-
Notifications
You must be signed in to change notification settings - Fork 15
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": "^21.0.1",
"@commitlint/config-conventional": "^21.0.1",
"@eslint/js": "^10.0.1",
"@vitest/eslint-plugin": "^1.6.18",
"cross-env": "^10.1.0",
"eslint": "^10.4.0",
"globals": "^17.6.0",
"lerna": "^9.0.7",
"prettier": "^3.8.3",
"tsdown": "^0.22.0",
"turbo": "^2.9.14",
"typedoc": "^0.28.19",
"typescript": "^6.0.3",
"typescript-eslint": "^8.60.0"
},
"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@11.3.0+sha512.2c403d6594527287672b1f7056343a1f7c3634036a67ffabfcc2b3d7595d843768f8787148d1b57cf7956c90606bbd192857c363af19e96d2d0ec9ec5741d215"
}