-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
33 lines (33 loc) · 893 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
{
"name": "tsmpkg-monorepo",
"version": "1.0.0",
"scripts": {
"build": "pnpm run -r build",
"lint": "pnpm run -r lint",
"test": "pnpm run -r test",
"clean": "pnpm run -r clean",
"prepare": "is-ci || husky install",
"check": "pnpm clean && pnpm lint && pnpm test && pnpm build",
"postinstall": "pnpm run -r --filter tsmpkg build && pnpm i --ignore-scripts && tsmpkg dev"
},
"private": true,
"type": "module",
"devDependencies": {
"@changesets/cli": "^2.26.2",
"@typescript-eslint/eslint-plugin": "^6.9.1",
"@typescript-eslint/parser": "^6.9.1",
"eslint": "^8.52.0",
"husky": "^8.0.3",
"is-ci": "^3.0.1",
"prettier": "^3.0.3",
"tsmpkg": "workspace:^",
"typescript": "^5.2.2"
},
"volta": {
"node": "20.9.0",
"pnpm": "8.10.2"
},
"lint-staged": {
"*.{ts,js,mjs,cjs,css,md}": "prettier --write"
}
}