-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.33 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.33 KB
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
{
"private": true,
"type": "module",
"devDependencies": {
"@commitlint/cli": "^20.5.0",
"@commitlint/config-conventional": "^20.5.0",
"@eslint/js": "^10.0.1",
"@vitest/eslint-plugin": "^1.6.13",
"cross-env": "^10.1.0",
"eslint": "^10.1.0",
"globals": "^17.4.0",
"lerna": "^9.0.7",
"prettier": "^3.8.1",
"tsdown": "^0.21.6",
"turbo": "^2.8.20",
"typedoc": "^0.28.18",
"typescript": "^6.0.2",
"typescript-eslint": "^8.57.2"
},
"scripts": {
"clean": "rm -rf packages/*/dist",
"build": "pnpm run clean && cross-env NODE_ENV=production turbo run build",
"build-docs": "npm run check-types && typedoc",
"format": "prettier --write .",
"check-format:root": "prettier --ignore-unknown --check !packages/** .",
"check-format": "turbo run check-format check-format:root",
"check-types": "turbo run check-types",
"lint": "turbo run lint",
"test": "turbo run test",
"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": "22"
},
"packageManager": "pnpm@10.33.0+sha512.10568bb4a6afb58c9eb3630da90cc9516417abebd3fabbe6739f0ae795728da1491e9db5a544c76ad8eb7570f5c4bb3d6c637b2cb41bfdcdb47fa823c8649319"
}