-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) 路 1.25 KB
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) 路 1.25 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
{
"name": "@deckflow/deckuse",
"private": true,
"license": "AGPL-3.0",
"type": "module",
"packageManager": "pnpm@10.6.3",
"engines": {
"node": ">=20.19.0"
},
"scripts": {
"prepare": "git config core.hooksPath .githooks || true",
"build": "node scripts/generate-cli-version.mjs && tsc -b && node scripts/generate-schema.mjs",
"lint": "eslint .",
"typecheck": "tsc -b --pretty false",
"test": "vitest run",
"test:integration-writes": "node scripts/integration-writes.mjs",
"format": "prettier --write .",
"format:check": "prettier --check .",
"check:no-commercial-leak": "node scripts/assert-no-commercial-leak.mjs",
"install:global": "node scripts/install-global.mjs",
"uninstall:global": "node scripts/uninstall-global.mjs",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "pnpm build && pnpm check:no-commercial-leak && node scripts/sync-npm-readme.mjs && changeset publish"
},
"devDependencies": {
"@changesets/cli": "latest",
"@eslint/js": "latest",
"@types/node": "latest",
"eslint": "latest",
"eslint-config-prettier": "latest",
"prettier": "latest",
"typescript": "^5.9.3",
"typescript-eslint": "latest",
"vitest": "latest"
}
}