-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 1001 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 1001 Bytes
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
{
"name": "bight-ts-extras",
"private": true,
"type": "module",
"packageManager": "pnpm@10.33.0",
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"build": "pnpm -r --workspace-concurrency=1 build",
"lint": "pnpm -r --workspace-concurrency=1 --if-present lint",
"test": "pnpm -r --workspace-concurrency=1 --if-present test",
"typecheck": "pnpm -r --workspace-concurrency=1 --if-present typecheck",
"format": "pnpm -r --workspace-concurrency=1 --if-present format",
"pack:all": "node scripts/pack-all.mjs",
"ensure:core-published": "node scripts/ensure-core-published.mjs",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "changeset publish",
"release:ci": "pnpm ensure:core-published && pnpm release"
},
"devDependencies": {
"@changesets/cli": "^2.29.7",
"@eslint/js": "^9.35.0",
"eslint": "^9.35.0",
"globals": "^16.4.0",
"prettier": "^3.6.2",
"typescript-eslint": "^8.42.0"
}
}