-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
22 lines (22 loc) · 935 Bytes
/
Copy pathpackage.json
File metadata and controls
22 lines (22 loc) · 935 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"name": "csm-next",
"version": "0.1.0",
"description": "A next-generation standalone frontend theme for CF-Server-Monitor",
"type": "module",
"license": "MIT",
"scripts": {
"clean": "node -e \"require('node:fs').rmSync('dist',{recursive:true,force:true})\"",
"build": "node scripts/build.mjs",
"test": "node --test tests/auth.test.mjs tests/login.test.mjs tests/theme-settings.test.mjs tests/title.test.mjs tests/url.test.mjs tests/http.test.mjs tests/ping.test.mjs tests/probe-history.test.mjs tests/i18n.test.mjs tests/dashboard.test.mjs tests/dashboard-history.test.mjs tests/detail.test.mjs tests/admin.test.mjs tests/worker.test.mjs",
"dev": "node scripts/build.mjs && node scripts/serve.mjs",
"preview": "node scripts/serve.mjs",
"cf:dev": "wrangler dev",
"cf:deploy": "wrangler deploy"
},
"engines": {
"node": ">=18"
},
"devDependencies": {
"wrangler": "^4.111.0"
}
}