-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
30 lines (30 loc) · 987 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
{
"private": true,
"type": "module",
"devDependencies": {
"cross-env": "^7.0.3",
"eslint": "^8.57.1",
"lerna": "^8.1.8",
"prettier": "^3.3.3",
"tsup": "^8.3.5",
"typedoc": "^0.26.10",
"typescript": "5.6.3",
"vitest": "^2.1.3"
},
"scripts": {
"build": "cross-env NODE_ENV=production pnpm -r run build",
"build-docs": "npm run check-types && typedoc",
"format": "prettier --write .",
"check-format": "prettier --check .",
"lint": "eslint .",
"check-types": "pnpm -r exec tsc",
"test": "vitest",
"release": "npm run build && lerna publish --conventional-commits --create-release=github",
"release-canary": "npm run build && lerna publish --force-publish --dist-tag canary --canary"
},
"engines": {
"node": "20",
"pnpm": "9"
},
"packageManager": "pnpm@9.8.0+sha512.8e4c3550fb500e808dbc30bb0ce4dd1eb614e30b1c55245f211591ec2cdf9c611cabd34e1364b42f564bd54b3945ed0f49d61d1bbf2ec9bd74b866fcdc723276"
}