generated from jufuku-haijo/ts-lib-starter
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
43 lines (43 loc) · 1.1 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{
"name": "ts-lib-starter",
"version": "0.0.0",
"author": "nemurubaka",
"private": true,
"description": "",
"keywords": [],
"publishConfig": {
"access": "public"
},
"files": [
"dist"
],
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"exports": {
"require": "./dist/index.js",
"import": "./dist/index.mjs"
},
"types": "./dist/index.d.ts",
"homepage": "https://github.com/jufuku-haijo/ts-lib-starter",
"repository": {
"type": "git",
"url": "git@github.com:jufuku-haijo/ts-lib-starter.git"
},
"bugs": "https://github.com/jufuku-haijo/ts-lib-starter/issues",
"scripts": {
"format": "prettier --write . --ignore-unkown",
"build:core": "pnpm run --filter astro-satori build",
"build:playground": "pnpm run --filter playground build",
"build": "pnpm run build:core && pnpm run build:playground",
"test": "vitest",
"test:watch": "vitest -w",
"prepublishOnly": "pnpm run build"
},
"license": "MIT",
"devDependencies": {
"prettier": "^2.8.1",
"tsup": "^6.5.0",
"typescript": "^4.9.5",
"vitest": "^0.28.4"
}
}