-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy pathpackage.json
60 lines (60 loc) · 1.48 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
{
"private": true,
"version": "1.0.0",
"description": "提取项目里的中文,并替换为i18n函数",
"scripts": {
"preinstall": "only-allow pnpm",
"prepare": "husky install",
"cz": "pnpm changeset-add && cz",
"dev": "turbo run dev --parallel",
"build": "turbo run build",
"changeset-add": "changeset add",
"version-packages": "changeset version",
"release": "pnpm build && pnpm changeset publish"
},
"author": "IFreeOvO",
"license": "MIT",
"packageManager": "[email protected]",
"engines": {
"node": ">=16",
"pnpm": ">=7"
},
"devDependencies": {
"@changesets/cli": "^2.27.5",
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@types/node": "^18.11.6",
"@typescript-eslint/eslint-plugin": "^5.40.1",
"@typescript-eslint/parser": "^5.40.1",
"commitizen": "^4.2.5",
"cz-git": "^1.3.12",
"eslint": "^8.26.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"only-allow": "^1.1.1",
"prettier": "^2.7.1",
"turbo": "^1.6.3",
"typescript": "^4.8.4"
},
"lint-staged": {
"*.{md,json}": [
"prettier --write"
],
"*.ts": [
"eslint --fix",
"prettier --parser=typescript --write"
]
},
"config": {
"commitizen": {
"path": "cz-git"
}
},
"pnpm": {
"patchedDependencies": {
"[email protected]": "patches/[email protected]"
}
}
}