-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.37 KB
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 1.37 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.2.1",
"@commitlint/config-conventional": "^21.2.0",
"@eslint/js": "^10.0.1",
"@vitest/eslint-plugin": "^1.6.24",
"cross-env": "^10.1.0",
"eslint": "^10.8.0",
"globals": "^17.8.0",
"lerna": "^10.0.0",
"prettier": "^3.9.6",
"tsdown": "^0.22.14",
"turbo": "^2.10.8",
"typedoc": "^0.28.20",
"typescript": "^6.0.3",
"typescript-eslint": "^8.65.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 --canary --force-publish --dist-tag canary --preid canary-$(date -u +%Y%m%d%H%M%S)"
},
"engines": {
"node": "22"
},
"packageManager": "pnpm@11.19.0+sha512.7881f3ed590d472c4a955e2b88b2121791116066dcc88cbca3849ec9b60f1bbaa6d2ccb221fa91da4e1c65bef2bcbe379365aea7ac539c7bf86dedc3a1b22dce"
}