-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.18 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.18 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
{
"name": "@sourceacademy/modules-buildtools",
"private": true,
"description": "Tools for building and testing Source Academy bundles and tabs",
"version": "1.0.0",
"devDependencies": {
"@commander-js/extra-typings": "^14.0.0",
"@types/estree": "^1.0.0",
"@types/http-server": "^0.12.4",
"@types/node": "^24.0.0",
"typescript": "^6.0.2"
},
"exports": null,
"bin": {
"buildtools": "./dist/index.js"
},
"type": "module",
"dependencies": {
"@sourceacademy/modules-repotools": "workspace:^",
"@vitejs/plugin-react": "^6.0.1",
"@vitest/browser-playwright": "4.1.4",
"@vitest/coverage-v8": "4.1.4",
"acorn": "^8.8.1",
"acorn-typescript": "^1.4.13",
"astring": "^1.8.6",
"chalk": "^5.0.1",
"commander": "^14.0.0",
"es-toolkit": "^1.44.0",
"esbuild": "^0.28.0",
"eslint": "^9.35.0",
"http-server": "^14.1.1",
"jsdom": "^29.0.0",
"typedoc": "^0.28.18",
"vite": "^8.0.5",
"vitest": "4.1.4"
},
"scripts": {
"build": "node ./build.js --dev",
"lint": "eslint src",
"postinstall": "node ./build.js",
"tsc": "tsc --project ./tsconfig.json",
"test": "buildtools test --project ."
}
}