-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·34 lines (34 loc) · 1.13 KB
/
package.json
File metadata and controls
executable file
·34 lines (34 loc) · 1.13 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
{
"name": "jbasic",
"version": "1.0.0",
"description": "QBasic interpreter in TypeScript",
"main": "dist/JBasic.js",
"scripts": {
"build": "tsc",
"playground": "esbuild playground/main.ts --bundle --outfile=playground/bundle.js --format=iife --platform=browser --target=es2020 --loader:.BAS=text && esbuild playground/embed.ts --bundle --outfile=playground/embed-bundle.js --format=iife --platform=browser --target=es2020 --loader:.BAS=text && cd playground && python3 -m http.server 8080",
"test": "jest",
"typecheck": "tsc --noEmit"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/jest": "^29.5.0",
"@types/pako": "^2.0.4",
"esbuild": "^0.27.3",
"jest": "^29.7.0",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.2",
"typescript": "^5.3.0"
},
"dependencies": {
"@codemirror/autocomplete": "^6.20.0",
"@codemirror/commands": "^6.10.2",
"@codemirror/language": "^6.12.1",
"@codemirror/lint": "^6.9.4",
"@codemirror/search": "^6.6.0",
"@codemirror/state": "^6.5.4",
"@codemirror/view": "^6.39.15",
"@lezer/highlight": "^1.2.3",
"pako": "^2.1.0"
}
}