-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.8 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.8 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "Radius",
"type": "module",
"version": "1.0.0",
"scripts": {
"dev:server": "tsx --watch server",
"dev:client": "astro dev",
"dev": "npm run dev:client",
"build:server": "tsc -p server",
"build:client": "astro build",
"build": "npm run build:server & npm run build:client",
"start": "node server/index.js",
"bstart": "npm run build && npm run start",
"astro": "astro",
"format": "biome format --write ."
},
"dependencies": {
"@astrojs/check": "^0.9.4",
"@astrojs/node": "^9.2.0",
"@fastify/cookie": "^11.0.2",
"@fastify/middie": "^9.0.3",
"@fastify/static": "^8.1.1",
"@mercuryworkshop/wisp-js": "^0.4.0",
"@tailwindcss/vite": "^4.0.14",
"@tomphttp/bare-server-node": "^2.0.6",
"astro": "^5.7.4",
"astro-icon": "^1.1.5",
"fastify": "^5.2.1",
"tailwindcss": "^4.0.14",
"typescript": "^5.8.2",
"vite": "^6.2.2"
},
"pnpm": {
"onlyBuiltDependencies": [
"@biomejs/biome",
"bufferutil",
"esbuild",
"sharp",
"utf-8-validate"
]
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@iconify-json/lucide": "^1.2.30",
"@iconify-json/material-symbols": "^1.2.17",
"@mercuryworkshop/bare-as-module3": "^2.2.5",
"@mercuryworkshop/bare-mux": "^2.1.7",
"@mercuryworkshop/epoxy-transport": "^2.1.27",
"@mercuryworkshop/libcurl-transport": "^1.4.0",
"@mercuryworkshop/scramjet": "https://github.com/MercuryWorkshop/scramjet/releases/download/latest/mercuryworkshop-scramjet-2.0.0-alpha.tgz",
"@playform/compress": "^0.1.7",
"@titaniumnetwork-dev/ultraviolet": "^3.2.10",
"@types/node": "^22.13.10",
"sharp": "^0.34.1",
"tsx": "^4.19.3",
"vite-plugin-static-copy": "^2.3.0"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=9.0.0"
}
}