-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.33 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 2.33 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
67
68
69
70
71
72
73
74
75
76
{
"name": "htmlrunner",
"version": "2.0.0",
"description": "A small live HTML/JS runner with console capture.",
"main": "index.js",
"scripts": {
"start": "npm i && npm run dev",
"dev": "vite",
"build": "vite build",
"build:single": "cross-env SINGLE_FILE=true npm run build",
"preview": "vite preview",
"lint": "eslint \"src/**/*.{ts,js}\" --ext .ts,.js || true",
"make-pretty": "prettier --write \"src/**/*.{ts,js,css,html}\"",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/HTMLToolkit/HTMLRunner.git"
},
"keywords": [],
"author": "NellowTCS",
"license": "MIT",
"dependencies": {
"@babel/core": "^7.29.0",
"@babel/parser": "^7.29.3",
"@babel/runtime": "^7.29.2",
"@biomejs/js-api": "^4.0.0",
"@biomejs/wasm-web": "^2.4.15",
"@codemirror/autocomplete": "^6.20.2",
"@codemirror/commands": "^6.10.3",
"@codemirror/lang-css": "^6.3.1",
"@codemirror/lang-html": "^6.4.11",
"@codemirror/lang-javascript": "^6.2.5",
"@codemirror/lang-markdown": "^6.5.0",
"@codemirror/lint": "^6.9.6",
"@codemirror/state": "^6.6.0",
"@codemirror/view": "^6.43.0",
"@fortawesome/fontawesome-free": "^7.2.0",
"@nisoku/sairin": "^0.1.2",
"@prettier/plugin-xml": "^3.4.2",
"@replit/codemirror-indentation-markers": "^6.5.3",
"@uiw/codemirror-theme-bbedit": "^4.25.9",
"@uiw/codemirror-theme-monokai": "^4.25.9",
"almostnode": "^0.2.14",
"buffer": "^6.0.3",
"codemirror": "^6.0.2",
"comlink": "^4.4.2",
"esbuild-wasm": "^0.28.0",
"eslint-linter-browserify": "^10.3.0",
"file-saver": "^2.0.5",
"jszip": "^3.10.1",
"marked": "^18.0.10",
"prettier": "^3.8.3",
"split.js": "^1.6.5",
"wasm-git": "^0.0.17",
"xterm": "^5.3.0",
"xterm-addon-fit": "^0.8.0"
},
"devDependencies": {
"@eslint/css": "^1.2.0",
"@eslint/js": "^10.0.1",
"@eslint/json": "^1.2.0",
"@eslint/markdown": "^8.0.1",
"@types/file-saver": "^2.0.7",
"@types/prettier": "^2.7.3",
"@types/split.js": "^1.4.0",
"cross-env": "^10.1.0",
"globals": "^17.6.0",
"htmlhint": "^1.9.2",
"sharp": "^0.34.4",
"typescript": "^6.0.3",
"typescript-eslint": "^8.59.4",
"vite": "^8.0.12",
"vite-plugin-singlefile": "^2.3.0"
}
}