-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
70 lines (70 loc) · 2.05 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
{
"name": "revili-monorepo",
"version": "0.0.1",
"description": "A command and GUI integration tool based on vite.",
"private": true,
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "pnpm build:copy && pnpm build:tsc",
"build:tsc": "pnpm -r build",
"build:copy": "pnpm -r copy",
"clean": "pnpm -r --stream clean",
"commit": "git add . && git cz",
"cov": "npx jest --config ./jest.config.js --coverage",
"dev": "pnpm -r --parallel build --watch & pnpm -r --parallel copy --watch",
"dev:default": "pnpm -r --parallel build --watch & pnpm -r --parallel copy --watch & pnpm dev:app",
"dev:app": "node packages/core/dist/node/cli.js dev -d",
"docs:deploy": "bash scripts/docs-deploy.sh",
"docs:build": "bash scripts/docs-build.sh",
"lint": "eslint --fix src",
"newbranch": "npx git newbranch",
"release": "pnpm clean && pnpm build && bash scripts/release.sh",
"release:pre": "pnpm clean && pnpm build && bash scripts/pre-release.sh"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-customizable"
},
"cz-customizable": {
"config": ".cz-configrc.js"
}
},
"gitHooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -e $GIT_PARAMS"
},
"lint-staged": {
"*.{js}": [
"eslint --fix src",
"git add"
]
},
"devDependencies": {
"@changesets/cli": "2.23.2",
"@commitlint/config-conventional": "17.3.0",
"@types/node": "18.11.9",
"@typescript-eslint/eslint-plugin": "^5.46.1",
"@typescript-eslint/parser": "^5.46.1",
"commitizen": "4.2.5",
"cpx2": "4.1.2",
"cz-customizable": "6.3.0",
"eslint": "^8.30.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-vue": "^9.8.0",
"husky": "8.0.2",
"lint-staged": "^8.2.1",
"prettier": "^2.8.1",
"rimraf": "3.0.2",
"typescript": "4.9.5"
},
"keywords": [
"vite",
"GUI",
"CLI",
"command"
],
"author": "reco_luan",
"license": "MIT"
}