-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
88 lines (88 loc) · 2.34 KB
/
package.json
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
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "owlet-editor",
"version": "0.0.1",
"description": "Web-based IDE for the BBC Micro",
"homepage": "https://github.com/mattgodbolt/owlet-editor#readme",
"bugs": {
"url": "https://github.com/mattgodbolt/owlet-editor/issues"
},
"license": "BSD-2-Clause",
"author": {
"name": "Matt Godbolt",
"email": "[email protected]",
"url": "https://xania.org"
},
"contributors": [
{
"name": "Dominic Pajak",
"url": "https://www.dompajak.com/"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/mattgodbolt/owlet-editor.git"
},
"private": true,
"dependencies": {
"base2048": "^2.0.2",
"html-webpack-partials-plugin": "^0.8.0",
"jquery": "^3.7.1",
"jsbeeb": "github:mattgodbolt/jsbeeb#4e5f3666cbce0613bc9e7006d4aceddcb1095dc4",
"monaco-editor": "^0.52.0",
"promise": "^8.3.0",
"resize-observer-polyfill": "^1.5.1",
"underscore": "^1.13.7"
},
"devDependencies": {
"@eslint/js": "^9.14.0",
"@fortawesome/fontawesome-free": "^6.6.0",
"binary-loader": "0.0.1",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^12.0.2",
"css-loader": "^7.1.2",
"css-minimizer-webpack-plugin": "^7.0.0",
"eslint": "^9.14.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"esm": "^3.2.25",
"favicons": "^7.2.0",
"favicons-webpack-plugin": "^6.0.1",
"globals": "^15.12.0",
"html-loader": "^5.1.0",
"html-webpack-plugin": "^5.6.3",
"husky": "^9.1.6",
"jsdom": "^25.0.1",
"less": "^4.2.0",
"less-loader": "^12.2.0",
"lint-staged": "^15.2.10",
"mini-css-extract-plugin": "^2.9.2",
"monaco-editor-webpack-plugin": "^7.1.0",
"node-loader": "^2.0.0",
"prettier": "^3.3.3",
"style-loader": "^4.0.0",
"terser-webpack-plugin": "^5.3.10",
"vitest": "^2.1.4",
"webpack": "^5.96.1",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.1.0",
"yaml-loader": "^0.8.1"
},
"scripts": {
"watch": "webpack --watch",
"start": "webpack serve",
"build": "webpack",
"lint": "eslint .",
"lint-fix": "eslint --fix .",
"test": "vitest"
},
"lint-staged": {
"*.{mjs,js,ts}": [
"eslint --cache --fix",
"prettier --write",
"vitest related --run"
],
"*.{css,md,yaml,json}": [
"prettier --write"
]
}
}