-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.28 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.28 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
38
39
40
{
"name": "workforce",
"version": "0.0.0",
"private": true,
"type": "module",
"packageManager": "pnpm@9.4.0",
"engines": {
"node": ">=22",
"pnpm": ">=9.4.0"
},
"scripts": {
"build": "turbo run build",
"check:docs": "node tooling/docs/check-docs.mjs",
"check:workspace-links": "node tooling/scripts/check-workspace-links.mjs",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint .",
"protocol:schema:check": "pnpm --filter @workforce/protocol build && node tooling/protocol/generate-schemas.mjs --check",
"protocol:schema:generate": "pnpm --filter @workforce/protocol build && node tooling/protocol/generate-schemas.mjs",
"test": "vitest run",
"test:docs": "node --test tooling/docs/check-docs.test.mjs",
"typecheck": "turbo run typecheck"
},
"devDependencies": {
"@eslint/js": "10.0.1",
"@types/node": "22.20.2",
"@workforce/eslint-config": "workspace:*",
"@workforce/tsconfig": "workspace:*",
"eslint": "10.10.0",
"eslint-config-prettier": "10.1.8",
"globals": "17.12.0",
"happy-dom": "20.0.11",
"prettier": "3.9.6",
"turbo": "2.10.12",
"typescript": "5.9.3",
"typescript-eslint": "8.70.0",
"vitest": "5.0.0",
"zod-to-json-schema": "3.25.2"
}
}