-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.38 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.38 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
45
46
47
48
49
50
51
{
"name": "locobasic",
"version": "0.5.48",
"description": "# LocoBasic - Loco BASIC",
"type": "commonjs",
"main": "./dist/locobasic.js",
"exports": {
".": {
"require": "./dist/locobasic.js"
},
"./ui": {
"require": "./dist/locobasicUI.js"
},
"./vm": {
"require": "./dist/locoVmWorker.js"
}
},
"scripts": {
"lint": "eslint src tests",
"clean": "rimraf dist",
"copy:static": "cpy \"public/**/*\" dist",
"build:js": "tsc --build",
"build:rollup": "rollup -c",
"build": "npm run build:js && npm run build:rollup && npm run copy:static && node updateVersion.mjs",
"test": "vitest run",
"typecheck:tests": "tsc -p tsconfig.tests.json",
"dev": "vitest",
"test:coverage": "vitest run --coverage --coverage.reportsDirectory=./tmp/coverage",
"predeploy": "npm run build",
"deploy": "gh-pages -d dist"
},
"devDependencies": {
"@rollup/plugin-typescript": "^12.3.0",
"@types/codemirror": "^5.60.15",
"@types/eslint__js": "^8.42.3",
"@types/node": "^22.9.0",
"@vitest/coverage-v8": "^3.1.3",
"cpy-cli": "^7.0.0",
"eslint": "^9.39.1",
"gh-pages": "^6.2.0",
"rimraf": "^5.0.5",
"rollup": "^4.25.0",
"rollup-plugin-esbuild": "^6.2.1",
"typescript": "^5.6.3",
"typescript-eslint": "^8.47.0",
"vitest": "^3.1.3"
},
"dependencies": {
"ohm-js": "^17.1.0"
}
}