-
Notifications
You must be signed in to change notification settings - Fork 409
/
package.json
54 lines (54 loc) · 1.46 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "interstellar",
"type": "module",
"version": "6.0.0",
"scripts": {
"dev": "astro preferences disable --global devToolbar && astro dev",
"start": "tsx index.ts",
"build": "astro check && astro build",
"typecheck": "astro check",
"astro": "astro",
"disable": "npx astro telemetry disable",
"precommit": "pnpm check && pnpm typecheck",
"check": "prettier --write . && biome check --write ."
},
"dependencies": {
"@astrojs/check": "^0.9.4",
"@astrojs/node": "^8.3.4",
"@astrojs/tailwind": "^5.1.3",
"@fastify/basic-auth": "^6.0.2",
"@fastify/compress": "^8.0.1",
"@fastify/middie": "^9.0.2",
"@fastify/static": "^8.0.3",
"@mercuryworkshop/bare-mux": "2.1.7",
"@mercuryworkshop/epoxy-transport": "2.1.27",
"@mercuryworkshop/wisp-js": "^0.3.3",
"@titaniumnetwork-dev/ultraviolet": "^3.2.10",
"astro": "^4.16.18",
"fastify": "^5.1.0",
"js-cookie": "^3.0.5",
"lucide-astro": "^0.468.0",
"mime": "^4.0.4",
"sharp": "^0.33.5",
"tailwindcss": "^3.4.16",
"tsx": "^4.19.2",
"typescript": "^5.6.3",
"vite-plugin-static-copy": "^2.2.0",
"dompurify": "^3.2.3"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/js-cookie": "^3.0.6",
"@types/node": "^22.10.2",
"prettier": "^3.4.2",
"prettier-plugin-astro": "^0.14.1"
},
"pnpm": {
"overrides": {
"cookie": "^0.7.0"
}
},
"resolutions": {
"cookie": "^0.7.0"
}
}