-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 901 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 901 Bytes
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
{
"name": "EDDN-RealTime",
"version": "0.0.1",
"type": "module",
"scripts": {
"build:bundle": "esbuild html/js/main.js --outdir=html/dist-js/ --bundle --format=esm --mangle-props='^[#_]' --minify --sourcemap --analyze",
"build": "npm run build:bundle",
"watch": "npm run build:bundle -- --watch",
"lint:js": "eslint html/js",
"lint": "npm run lint:js"
},
"imports": {
"#DashboardModule": "./html/js/board/DashboardModule.js",
"#config.js": "./html/js/config.js",
"#utils.js": "./html/js/utils/utils.js",
"#data/*": "./html/data/*",
"#board/*": "./html/js/board/*",
"#ed/*": "./html/js/ed/*",
"#eddn/*": "./html/js/eddn/*",
"#modules/*": "./html/js/board/modules/*",
"#ui/*": "./html/js/ui/*",
"#ws/*": "./html/js/ws/*"
},
"devDependencies": {
"esbuild": "^0.28",
"eslint": "^10",
"@eslint/js": "^10",
"eslint-plugin-jsdoc": "^62",
"globals": "^17"
}
}