-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.58 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.58 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "wpt-diff",
"version": "0.0.1",
"private": true,
"description": "",
"main": "index.js",
"type": "module",
"scripts": {
"build": "tsc",
"start": "tsx src/cli.ts",
"dev": "tsx --watch src/cli.ts",
"fmt": "biome format --write .",
"wpt:serve": "cd wpt && ./wpt serve --no-h2",
"prepare": "ts-patch install",
"generate:validators": "typia generate --input src/util/validators --output generatedValidators",
"submodule:bump": "git submodule update --remote --merge",
"combine-reports": "tsx scripts/combineReports.ts",
"regression-check": "tsx scripts/regressionCheck.ts"
},
"keywords": [],
"author": "",
"devDependencies": {
"@biomejs/biome": "^2.1.1",
"@types/node": "^24.0.12",
"@types/proper-lockfile": "^4.1.4",
"@types/supports-color": "^10.0.0",
"json-stream-stringify": "^3.1.6",
"ts-node": "^10.9.2",
"ts-patch": "^3.3.0",
"tsx": "^4.20.3",
"typescript": "~5.8.3"
},
"dependencies": {
"@opentf/cli-pbar": "^0.7.2",
"@playwright/test": "^1.53.2",
"chalk": "^5.4.1",
"commander": "^14.0.0",
"console-with-style": "^1.1.0",
"libarchive.js": "^2.0.2",
"neverthrow": "^8.2.0",
"octokit": "^5.0.3",
"ora": "^8.2.0",
"playwright": "^1.53.2",
"simple-git": "^3.28.0",
"smol-toml": "^1.4.1",
"tslog": "^4.9.3",
"typia": "^9.4.0",
"zod": "^4.0.0"
},
"imports": {
"#types/*": "./types/*",
"#page/*": "./src/page/*",
"#routeInterceptors/*": "./src/routeInterceptors/*",
"#util/*": "./src/util/*",
"#scripts/*": "./scripts/*"
}
}