-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 1.91 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
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "pv-script",
"type": "module",
"version": "0.0.7",
"description": "A project git/version script",
"author": "Lzzzs",
"license": "MIT",
"keywords": [
"script",
"git",
"version",
"project"
],
"bin": {
"pv-script": "./bin/index.js"
},
"files": [
"bin"
],
"repository": {
"type": "git",
"url": "https://github.com/Lzzzs/pv-script"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"homepage": "https://github.com/Lzzzs/pv-script",
"bugs": "https://github.com/Lzzzs/pv-script/issues",
"scripts": {
"dev": "pnpm build && node bin/index.js",
"build": "rollup -c",
"prepare": "husky install",
"test": "vitest run",
"test:dev": "vitest",
"test:coverage": "vitest run --coverage",
"commit": "git add . && cz",
"commit:changeset": "changeset add && git add . && cz",
"lint": "eslint src/**",
"lint:fix": "eslint src/** --fix",
"changeset:version": "changeset version",
"changeset:publish": "changeset publish --access public"
},
"config": {
"commitizen": {
"path": "node_modules/cz-git"
}
},
"dependencies": {
"chalk": "^5.3.0",
"commander": "^11.1.0",
"ora": "^7.0.1",
"prompts": "^2.4.2"
},
"devDependencies": {
"@antfu/eslint-config": "^2.3.4",
"@changesets/cli": "^2.27.1",
"@commitlint/config-conventional": "^18.4.3",
"@rollup/plugin-alias": "^5.1.0",
"@rollup/plugin-json": "^6.0.1",
"@types/prompts": "^2.4.9",
"@vitest/coverage-v8": "^1.1.0",
"commitizen": "^4.3.0",
"commitlint": "^18.4.3",
"cz-git": "^1.7.1",
"eslint": "^8.55.0",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"rollup": "^4.6.1",
"rollup-plugin-typescript2": "^0.36.0",
"tslib": "^2.6.2",
"typescript": "^5.3.2",
"vitest": "^1.0.1"
},
"lint-staged": {
"src/**": "eslint --cache --fix"
}
}