forked from titaniumnetwork-dev/nano
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.11 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
{
"name": "nano",
"description": "A minimalist web proxy built to be simple yet powerful.",
"contributors": [
"Leaflet",
"Nebelung"
],
"version": "1.0.0",
"license": "AGPL-3.0-only",
"type": "module",
"scripts": {
"start": "node index.js",
"build": "vite build",
"build-static": "vite build && node build.js",
"dev": "vite dev",
"preview": "vite preview",
"update": "npx npm-check-updates -u && pnpm i",
"revert": "git reset HEAD --hard && git clean -fd"
},
"dependencies": {
"chemicaljs": "^1.7.5",
"dreamland": "^0.0.24",
"dreamland-router": "https://github.com/mercuryworkshop/dreamland-router",
"express": "^4.19.2",
"rollup-plugin-typescript2": "^0.36.0",
"sortablejs": "^1.15.2",
"vite-plugin-dreamland": "^1.2.1"
},
"devDependencies": {
"autoprefixer": "^10.4.20",
"postcss": "^8.4.42",
"prettier": "^3.3.3",
"tailwindcss": "^3.4.10",
"vite": "^5.4.2"
},
"engines": {
"node": ">=20.11.0"
}
}