-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.92 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.92 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "scamper",
"version": "3.5.0",
"description": "The Scamper multimedia programming environment",
"main": "./_build/js/index.js",
"scripts": {
"cli": "tsx src/cli/index.ts",
"dev": "npm run build && vite",
"build": "tsc --noEmit && vite build",
"preview": "vite preview",
"deploy": "./scripts/deploy $npm_package_version",
"clean": "rm -rf dist",
"test": "vitest",
"coverage": "vitest run --coverage"
},
"type": "module",
"author": "",
"license": "ISC",
"devDependencies": {
"@eslint/js": "^10.0.1",
"@lezer/generator": "^1.8.0",
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-node-resolve": "^15.2.1",
"@rollup/plugin-typescript": "^11.1.2",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@types/jsdom": "^21.1.3",
"@types/node": "^20.5.9",
"@types/papaparse": "^5.3.16",
"@vitest/coverage-v8": "^3.2.4",
"eslint": "^10.0.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-only-warn": "^1.2.1",
"globals": "^17.4.0",
"jsdom": "^22.1.0",
"prettier": "3.8.1",
"ts-node": "^10.9.1",
"tsx": "^4.20.5",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.1",
"vite": "^7.0.0",
"vitest": "^3.2.4",
"vitest-canvas-mock": "^1.1.3"
},
"dependencies": {
"@codemirror/autocomplete": "^6.20.0",
"@codemirror/commands": "^6.10.2",
"@codemirror/language": "^6.9.0",
"@codemirror/lint": "^6.9.4",
"@codemirror/search": "^6.6.0",
"@codemirror/state": "^6.5.4",
"@codemirror/view": "^6.39.15",
"@lezer/highlight": "^1.1.6",
"@lezer/lr": "^1.3.10",
"@types/showdown": "^2.0.6",
"chart.js": "^4.5.1",
"codemirror": "^6.0.1",
"colorsys": "^1.0.22",
"highlight.js": "^11.10.0",
"papaparse": "^5.5.3",
"scheduler-polyfill": "^1.3.0",
"showdown": "^2.1.0",
"split.js": "^1.6.5",
"webaudiofont": "^3.0.4"
}
}