forked from GoblinHonest/mimo2api_mimoapi
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·38 lines (38 loc) · 1.28 KB
/
package.json
File metadata and controls
executable file
·38 lines (38 loc) · 1.28 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
{
"name": "mimo-proxy",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node dist/index.js",
"dev": "tsx watch src/index.ts",
"test": "node --import tsx --test \"test/**/*.test.ts\"",
"build:css": "npx @tailwindcss/cli -i src/web/input.css -o src/web/style.css --minify",
"build:assets": "cp node_modules/chart.js/dist/chart.umd.min.js src/web/chart.js",
"build:ts": "tsc",
"build:web": "node -e \"const fs=require('fs'); fs.rmSync('dist/web', {recursive:true, force:true}); fs.cpSync('src/web', 'dist/web', {recursive:true})\"",
"build": "npm run build:css && npm run build:assets && npm run build:ts && npm run build:web",
"dev:css": "npx @tailwindcss/cli -i src/web/input.css -o src/web/style.css --watch"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "module",
"dependencies": {
"@esbuild/darwin-arm64": "^0.28.0",
"@hono/node-server": "^2.0.3",
"better-sqlite3": "^12.8.0",
"chart.js": "^4.5.1",
"hono": "^4.12.9",
"undici": "^7.25.0"
},
"devDependencies": {
"@tailwindcss/cli": "^4.2.2",
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^25.5.0",
"@types/ws": "^8.18.1",
"tailwindcss": "^4.2.2",
"tsx": "^4.21.0",
"typescript": "^6.0.2"
}
}