-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.21 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
{
"name": "@colid/monorepo",
"version": "0.0.6",
"private": true,
"packageManager": "[email protected]",
"author": "alexzhang1030",
"license": "MIT",
"scripts": {
"build": "pnpm --filter @colid/shared build && pnpm --filter @colid/core build",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"typecheck": "tsc --noEmit",
"prepublishOnly": "pnpm build",
"prepare": "simple-git-hooks",
"up": "taze -r",
"test": "vitest",
"test:run": "vitest run",
"play": "pnpm --filter playground dev",
"release": "bumpp package.json packages/*/package.json --commit --push --tag && pnpm -r publish --access public"
},
"devDependencies": {
"@antfu/eslint-config": "^0.27.0",
"bumpp": "^8.2.1",
"eslint": "^8.25.0",
"jsdom": "^20.0.1",
"lint-staged": "^13.0.3",
"simple-git-hooks": "^2.8.1",
"taze": "^0.8.2",
"type-fest": "^3.1.0",
"typescript": "^4.8.4",
"unplugin-auto-import": "^0.11.2",
"vitest": "^0.24.3"
},
"simple-git-hooks": {
"pre-commit": "pnpm typecheck && pnpm test:run && pnpm exec lint-staged"
},
"lint-staged": {
"*.{js,ts,json,md}": [
"eslint --fix"
]
},
"eslintConfig": {
"extends": "@antfu"
}
}