forked from OSRS-Taskman/task-list
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.31 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.31 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
{
"scripts": {
"format:ultracite": "ultracite format",
"format:tasks": "tsx bin/frac.mts tiers/*.json",
"format": "npm run format:ultracite && npm run format:tasks",
"lint:ultracite": "ultracite lint",
"lint:tasks": "tsx bin/frac.mts --lint tiers/*.json",
"lint:schema": "tsx bin/validate-schema.mts",
"lint:uuids": "tsx bin/validate-uuids.mts",
"lint:links": "tsx bin/validate-links.mts",
"lint": "npm run lint:ultracite && npm run lint:tasks && npm run lint:schema && npm run lint:uuids && npm run lint:links",
"gen:types": "tsx bin/gen-types.mts",
"gen:uuids": "tsx bin/validate-uuids.mts --generate",
"gen:list:official": "tsx bin/gen-list.mts official easy,medium,hard,elite,master",
"all": "npm run format && npm run lint && npm run gen"
},
"devDependencies": {
"@biomejs/biome": "2.2.6",
"@tsconfig/node-ts": "^23.6.4",
"@tsconfig/node26": "^26.0.0",
"@types/ajv": "^0.0.5",
"@types/node": "^26.1.0",
"ajv": "^8.20.0",
"ajv-formats": "^3.0.1",
"fastest-levenshtein": "^1.0.16",
"fracturedjsonjs": "^4.1.1",
"glob": "^11.1.0",
"json-schema-to-typescript": "^15.0.4",
"lefthook": "^1.13.6",
"radash": "^12.1.1",
"tsx": "^4.23.0",
"typescript": "^6.0.3",
"ultracite": "^5.6.4"
},
"volta": {
"node": "26.4.0"
},
"allowScripts": {
"esbuild": true,
"lefthook": true
}
}