-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
36 lines (36 loc) · 1.17 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
{
"private": true,
"type": "module",
"devDependencies": {
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@eslint/js": "^9.18.0",
"@vitest/eslint-plugin": "^1.1.25",
"cross-env": "^7.0.3",
"eslint": "^9.18.0",
"globals": "^15.14.0",
"lerna": "^8.1.9",
"prettier": "^3.4.2",
"tsup": "^8.3.5",
"typedoc": "^0.27.6",
"typescript": "5.7.3",
"typescript-eslint": "^8.20.0",
"vitest": "^3.0.2"
},
"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": "[email protected]+sha512.8e4c3550fb500e808dbc30bb0ce4dd1eb614e30b1c55245f211591ec2cdf9c611cabd34e1364b42f564bd54b3945ed0f49d61d1bbf2ec9bd74b866fcdc723276"
}