-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.57 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.57 KB
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
{
"name": "JavaScriptCollection",
"type": "module",
"version": "0.0.2-alpha.26",
"packageManager": "[email protected]",
"description": "一本有趣的JavaScript合集",
"authorInfo": {
"name": "微信公众号:储凡",
"email": "[email protected]",
"url": "https://github.com/142vip",
"homePage": "https://code.142vip.cn"
},
"engines": {
"node": ">=18.x",
"pnpm": "9.15.0"
},
"scripts": {
"preinstall": "npx only-allow pnpm && chmod +x ./scripts/*",
"postinstall": "rm -rf .git/hooks && npx simple-git-hooks",
"clean": "npx fa clean --dist --deps --vite --all --ignore-tips",
"clean:hooks": "npx fa clean --git-hooks --all --ignore-tips",
"lint": "npx fa lint",
"lint:fix": "npx fa lint --fix",
"dev": "npx vuepress dev docs",
"build": "npx vuepress build docs --clean-temp --clean-cache",
"build:proxy": "NEED_PROXY=true npx vuepress build docs --clean-temp --clean-cache",
"release": "npx fa release --vip --check-branch next --check-branch main",
"check:commit": "npx node --loader ts-node/esm --no-warnings scripts/core/verify-commit.ts"
},
"devDependencies": {
"@142vip/commit-linter": "0.0.1-alpha.2",
"@142vip/eslint-config": "0.0.1-alpha.4",
"@142vip/fairy-cli": "0.0.3-alpha.25",
"@142vip/open-source": "0.0.1-alpha.3",
"@142vip/utils": "0.0.1-alpha.48",
"@142vip/vuepress": "0.0.1-alpha.17",
"only-allow": "1.2.1",
"simple-git-hooks": "2.13.0",
"ts-node": "10.9.2"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint:fix",
"commit-msg": "pnpm check:commit"
}
}