-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.53 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.53 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
{
"name": "htmlrunner",
"version": "1.1.0",
"description": "A small live HTML/JS runner with console capture.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack",
"watch": "webpack --watch",
"start": "webpack serve --open"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@babel/core": "^7.29.0",
"@babel/parser": "^7.28.5",
"@babel/runtime": "^7.28.6",
"@codemirror/commands": "^6.10.1",
"@codemirror/lang-css": "^6.3.1",
"@codemirror/lang-html": "^6.4.11",
"@codemirror/lang-javascript": "^6.2.4",
"@codemirror/lint": "^6.9.2",
"@codemirror/state": "^6.5.4",
"@codemirror/view": "^6.39.11",
"@prettier/plugin-xml": "^3.4.2",
"@types/codemirror": "^5.60.17",
"@uiw/codemirror-theme-bbedit": "^4.25.4",
"@uiw/codemirror-theme-monokai": "^4.25.4",
"codemirror": "^6.0.2",
"eslint": "^9.39.2",
"eslint-linter-browserify": "^9.39.2",
"file-saver": "^2.0.5",
"fontawesome": "^5.6.3",
"jszip": "^3.10.1",
"prettier": "^3.8.1",
"prettier-plugin-css-order": "^2.2.0",
"split.js": "^1.6.5",
"copy-webpack-plugin": "^13.0.1"
},
"devDependencies": {
"@types/file-saver": "^2.0.7",
"@types/prettier": "^3.0.0",
"@types/split.js": "^1.6.0",
"copy-webpack-plugin": "^13.0.1",
"htmlhint": "^1.8.0",
"ts-loader": "^9.5.4",
"typescript": "^5.9.3",
"webpack": "^5.104.1",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.3"
}
}