-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.28 KB
/
Copy pathpackage.json
File metadata and controls
35 lines (35 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
{
"name": "web-sdk-pp-doclayoutv3-workspace",
"version": "0.0.0",
"private": true,
"packageManager": "pnpm@11.16.0",
"engines": {
"node": ">=22"
},
"scripts": {
"build": "pnpm -r --if-present build",
"benchmark:test": "node --test scripts/benchmark-contract.test.mjs",
"benchmark:parity": "playwright test tests/browser/benchmark-parity.spec.ts",
"docs:test": "node --test scripts/check-doc-parity.test.mjs",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "pnpm -r --if-present lint",
"model:test": "python -m pytest tools/model-pipeline",
"release:test": "node --test scripts/verify-release.test.mjs scripts/dependency-security.test.mjs",
"test": "pnpm -r --if-present test",
"test:browser": "playwright test",
"typecheck": "pnpm -r --if-present typecheck",
"verify": "pnpm format:check && pnpm docs:test && pnpm release:test && pnpm benchmark:test && pnpm benchmark:parity && pnpm lint && pnpm typecheck && pnpm test && pnpm build"
},
"devDependencies": {
"@eslint/js": "^9.0.0",
"@types/node": "^24.0.0",
"eslint": "^9.0.0",
"playwright": "^1.55.0",
"prettier": "^3.6.0",
"tsup": "^8.5.0",
"typescript": "^5.9.0",
"typescript-eslint": "^8.0.0",
"vitest": "^3.2.0"
}
}