-
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) · 1.09 KB
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 1.09 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
{
"name": "bemap",
"version": "0.1.0",
"private": true,
"type": "module",
"description": "Backwards Educational Mapping And Planning",
"engines": {
"node": ">=20"
},
"scripts": {
"format": "biome check --write . && prettier --write \"**/*.{md,yaml,yml}\"",
"lint": "biome check . && prettier --check \"**/*.{md,yaml,yml}\" && markdownlint-cli2 \"**/*.md\" \"#node_modules\" \"#project\"",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"build:project": "tsx scripts/build-project-instructions.ts",
"sync:olr": "tsx scripts/sync-olr.ts",
"sync:oer": "tsx scripts/sync-oer.ts",
"check": "npm run lint && npm run typecheck && npm run test",
"prepare": "husky"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/node": "^22.10.0",
"husky": "^9.1.7",
"lint-staged": "^15.3.0",
"markdownlint-cli2": "^0.16.0",
"prettier": "^3.4.2",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"vitest": "^2.1.8"
},
"dependencies": {
"unpdf": "^1.6.2",
"yaml": "^2.6.1",
"zod": "^3.24.1"
}
}