-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 869 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 869 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
32
33
34
35
36
{
"name": "moci",
"version": "0.1.0",
"type": "module",
"description": "Modern management interface for OpenWrt routers",
"keywords": [
"openwrt",
"ubus",
"management",
"ui",
"theme",
"vanilla-js",
"spa",
"router"
],
"author": "",
"license": "MIT",
"scripts": {
"dev": "node scripts/watch.js qemu",
"dev:physical": "node scripts/watch.js",
"deploy": "scp -r moci/* root@192.168.1.1:/www/moci/",
"build": "node scripts/build.js",
"format": "prettier --write \"moci/**/*.{js,css,html}\" \"scripts/**/*.js\" \"index.html\"",
"format:check": "prettier --check \"moci/**/*.{js,css,html}\" \"scripts/**/*.js\" \"index.html\""
},
"devDependencies": {
"chokidar": "^5.0.0",
"clean-css": "^5.3.3",
"prettier": "^3.8.1",
"terser": "^5.36.0"
},
"repository": {
"type": "git",
"url": "https://github.com/HudsonGraeme/MoCI"
}
}