-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.42 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
{
"name": "common",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"preinstall": "npx only-allow pnpm",
"lint": "eslint . --ext .vue,.js,.ts,.jsx,.tsx --fix",
"test": "echo \"Error: no test specified\" && exit 1",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "pnpm --parallel build:tsc && pnpm release:only",
"release:only": "changeset publish --registry=https://registry.npmjs.com/",
"prepare": "husky install",
"commit": "git-cz"
},
"private": true,
"engines": {
"node": ">=16",
"pnpm": ">=8"
},
"packageManager": "pnpm@8.4.0",
"keywords": [],
"author": "yaoxfly",
"license": "MIT",
"devDependencies": {
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "*",
"@commitlint/cli": "^17.6.5",
"@commitlint/config-conventional": "^17.6.5",
"@types/node": "^20.2.3",
"commitizen": "^4.3.0",
"commitlint-config-cz": "^0.13.3",
"cz-customizable": "^7.0.0",
"husky": "^8.0.0",
"lint-staged": "^13.2.2",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
},
"lint-staged": {
"*.{js,ts,jsx,tsx,vue}": [
"pnpm --parallel lint"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"config": {
"commitizen": {
"path": "node_modules/cz-customizable"
},
"cz-customizable": {
"config": ".cz.config.json"
}
}
}