-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
74 lines (74 loc) · 2.16 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
{
"name": "revili-kit-vuepress-reco",
"version": "0.0.1-alpha.2",
"description": "",
"main": "dist/node/index.js",
"module": "dist/node/index.js",
"types": "dist/node/index.d.ts",
"type": "module",
"files": [
"dist",
"package.json"
],
"scripts": {
"build": "pnpm run build:tsc & pnpm run build:copy",
"build:copy": "cpx \"src/**/*.{d.ts,vue,html,png,svg,jpg,css}\" dist",
"build:tsc": "tsc",
"clean": "rimraf dist",
"commit": "git add . && git cz",
"dev": "pnpm run build:tsc --watch & pnpm run build:copy --watch",
"eslint": "eslint",
"start": "./node_modules/.pnpm/[email protected]_@[email protected]_@[email protected][email protected]/node_modules/revili/dist/node/cli.js start --dir=./dist",
"version": "./node_modules/.pnpm/[email protected]_@[email protected]_@[email protected][email protected]/node_modules/revili/dist/node/cli.js -v",
"test": "echo \"Error: no test specified\" && exit 1",
"release": "npm publish --tag latest",
"release:pre": "npm publish --tag next"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-customizable"
}
},
"gitHooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -e $GIT_PARAMS"
},
"lint-staged": {
"*.{js}": [
"eslint --fix src",
"git add"
]
},
"keywords": [],
"author": "reco_luan",
"license": "ISC",
"publishConfig": {
"access": "public"
},
"dependencies": {
"@vicons/ionicons5": "^0.12.0",
"naive-ui": "2.38.2",
"revili": "0.0.1-alpha.14",
"vue": "3.2.45",
"vue-router": "^4.3.2",
"vuepress-theme-reco": "2.0.0-rc.14"
},
"devDependencies": {
"@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"
}
}