-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 812 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 812 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
{
"name": "ielib-dev",
"version": "1.0.0",
"type": "module",
"scripts": {
"lint": "oxlint scripts/",
"typecheck": "tsc --noEmit",
"iesdp-update": "bash scripts/iesdp-update.sh",
"test": "vitest run",
"build-site": "tsx scripts/jsdoc-to-md.ts && tsx scripts/constants-to-md.ts && pnpm exec vitepress build docs",
"serve": "tsx scripts/jsdoc-to-md.ts && tsx scripts/constants-to-md.ts && pnpm exec vitepress dev docs"
},
"dependencies": {
"gray-matter": "^4.0.3",
"js-yaml": "^4.1.1",
"jsdom": "^29.0.1",
"tsx": "^4.21.0",
"yargs": "^18.0.0"
},
"devDependencies": {
"@types/js-yaml": "^4.0.9",
"@types/jsdom": "^21.1.7",
"@types/node": "^22.19.15",
"@types/yargs": "^17.0.35",
"oxlint": "^1.56.0",
"typescript": "^5.9.3",
"vitepress": "^1.6.4",
"vitest": "^4.1.0"
}
}