-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.15 KB
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 1.15 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
{
"name": "specdock",
"version": "1.0.2",
"private": true,
"license": "MIT",
"engines": {
"node": ">=20.19.0 <21 || >=22.13.0"
},
"workspaces": [
"packages/*",
"apps/*"
],
"scripts": {
"dev": "node scripts/dev.mjs",
"build": "npm run build --workspaces --if-present",
"lint": "npm run lint --workspaces --if-present",
"test": "npm run test --workspaces --if-present",
"test:sdk-smoke": "npm exec --workspace @specdock/generator -- vitest run src/sdk-smoke.test.ts --passWithNoTests",
"typecheck": "npm run typecheck --workspaces --if-present",
"contract:diff": "tsx packages/core/src/cli/diff.ts",
"sdk:generate": "tsx packages/generator/src/cli/generate.ts",
"desktop:dev": "npm run dev --workspace @specdock/desktop",
"desktop:package:dir": "npm run package:dir --workspace @specdock/desktop",
"release:checksums": "node scripts/checksums.mjs",
"format": "prettier --write ."
},
"devDependencies": {
"@eslint/js": "9.39.4",
"@types/node": "22.19.21",
"eslint": "9.39.4",
"prettier": "3.8.4",
"typescript": "5.9.3",
"typescript-eslint": "8.61.1",
"vite": "8.0.16"
}
}