forked from w3c/spec-generator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 935 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 935 Bytes
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
{
"name": "w3c-spec-generator",
"version": "3.0.2",
"license": "MIT",
"type": "module",
"dependencies": {
"cheerio": "^1.2.0",
"express": "^5.2.1",
"express-fileupload": "^1.5.0",
"file-type": "^21.3.0",
"filenamify": "^7.0.1",
"respec": "35.7.0",
"tar-stream": "^3.1.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
},
"devDependencies": {
"@types/express": "^5.0.6",
"@types/express-fileupload": "^1.5.1",
"@types/node": "^24.10.13",
"@types/tar-stream": "^3.1.4",
"husky": "^9.0.6",
"prettier": "^3.8.1"
},
"engines": {
"node": "22 || 24",
"npm": ">=7"
},
"scripts": {
"build": "tsc --noEmit false",
"lint": "tsc && prettier -c '**/*.ts'",
"fix": "prettier -w '**/*.ts'",
"test": "tsx test/index.test.ts",
"prepare": "husky install",
"start": "tsx server.ts",
"watch": "tsx watch --include index.html server.ts"
}
}