-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.45 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "@kiyoshiro/zx-lite",
"version": "0.0.1",
"license": "MIT",
"description": "A light-weight version of google/zx",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"bin": {
"zx-lite": "bin.js",
"zx": "bin.js"
},
"publishConfig": {
"access": "public"
},
"files": [
"dist"
],
"exports": {
".": "./dist/index.js",
"./globals": "./dist/globals.js",
"./package.json": "./package.json"
},
"typesVersions": {
"*": {
"globals": [
"./dist/globals.d.ts"
]
}
},
"scripts": {
"prepare": "husky install",
"build": "rm -rf dist&& tsc",
"lint:check": "rome check .",
"lint:fix": "rome format --write .",
"test": "vitest",
"test:typecheck": "vitest typecheck",
"test:coverage": "vitest --run --coverage",
"prepublishOnly": "pnpm build",
"release": "tsc --noEmit && bumpp package.json && pnpm publish"
},
"lint-staged": {
"*.{ts}": [
"rome format --write"
]
},
"dependencies": {
"@types/fs-extra": ">=11.0.0",
"execa": ">=6.0.0",
"fast-glob": ">=3.0.0",
"fs-extra": ">=11.0.0",
"tsx": ">=3.12.0"
},
"devDependencies": {
"@types/node": "18.14.2",
"@vitest/coverage-v8": "1.0.3",
"bumpp": "9.0.0",
"husky": "8.0.3",
"lint-staged": "13.1.2",
"rome": "11.0.0",
"typescript": "4.9.5",
"vite": "4.1.4",
"vitest": "1.0.3"
},
"packageManager": "[email protected]"
}