-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 934 Bytes
/
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
{
"name": "yueqing",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"preinstall": "npx only-allow pnpm",
"prepare": "husky install",
"build": "pnpm -r build",
"test": "pnpm -r test",
"lint": "eslint --ext .js,.ts --format=pretty ./packages",
"lint:fix": "eslint --fix --ext .js,.ts --format=pretty ./packages",
"ci:version": "changeset version && pnpm install --frozen-lockfile false",
"ci:publish": "pnpm build && changeset publish"
},
"devDependencies": {
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "^2.26.0",
"@types/node": "^18.11.18",
"@yueqing/lint": "^2.3.1",
"husky": "^8.0.3",
"lint-staged": "^13.1.0",
"typescript": "^4.9.5"
},
"lint-staged": {
"**/*.{js,ts}": [
"eslint --fix --format=pretty"
]
},
"packageManager": "pnpm@7.26.3",
"engines": {
"node": ">=16",
"pnpm": ">=7"
}
}