-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
114 lines (114 loc) · 3.15 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "skycryptv2",
"version": "0.0.1",
"private": true,
"type": "module",
"scripts": {
"dev": "dotenv -e .env.development -- vite dev",
"build": "vite build",
"build:dev": "dotenv -e .env.development -- vite build",
"preview": "vite preview",
"preview:dev": "dotenv -e .env.development -- vite preview",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"runbuild": "node ./build/index.js",
"test": "vitest",
"lint": "prettier --check . && eslint . && pnpm check",
"format": "prettier --write ."
},
"devDependencies": {
"@eslint/compat": "^1.2.6",
"@eslint/js": "^9.19.0",
"@sveltejs/adapter-node": "^5.2.12",
"@sveltejs/kit": "^2.16.1",
"@sveltejs/vite-plugin-svelte": "^5.0.3",
"@tailwindcss/vite": "^4.0.3",
"@types/eslint": "^9.6.1",
"@types/fs-extra": "^11.0.4",
"@types/lodash": "^4.17.15",
"@types/micromatch": "^4.0.9",
"@types/mongo-sanitize": "^1.0.3",
"@types/node": "^22.13.0",
"@types/relaxed-json": "^1.0.4",
"@types/upng-js": "^2.1.5",
"bits-ui": "^0.22.0",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"eslint": "^9.19.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-svelte": "^2.46.1",
"formsnap": "^2.0.0",
"fs-extra": "^11.3.0",
"globals": "^15.14.0",
"lodash": "^4.17.21",
"lucide-svelte": "^0.474.0",
"micromatch": "^4.0.8",
"mongo-sanitize": "^1.1.0",
"numerable": "^0.3.15",
"path": "^0.12.7",
"prettier": "^3.4.2",
"prettier-plugin-svelte": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.11",
"pretty-ms": "^9.2.0",
"relaxed-json": "^1.0.3",
"runed": "^0.23.2",
"simple-git": "^3.27.0",
"skinview3d": "^3.1.0",
"skyhelper-networth": "^1.27.1",
"svelte": "5.19.6",
"svelte-check": "^4.1.4",
"svelte-dnd-action": "^0.9.57",
"svelte-interactions": "^0.2.0",
"svelte-persisted-store": "^0.12.0",
"svelte-preprocess": "^6.0.3",
"svelte-seo": "^1.6.1",
"svelte-sonner": "^0.3.28",
"svelte-tiny-virtual-list": "^2.1.2",
"sveltekit-superforms": "^2.23.1",
"tailwind-merge": "^3.0.1",
"tailwindcss": "^4.0.3",
"tslib": "^2.8.1",
"typescript": "^5.7.3",
"typescript-eslint": "^8.22.0",
"upng-js": "^2.1.0",
"util": "^0.12.5",
"vaul-svelte": "1.0.0-next.3",
"vite": "^6.0.11",
"zod": "^3.24.1"
},
"dependencies": {
"@napi-rs/canvas": "^0.1.65",
"farming-weight": "^0.8.1",
"minecraft-data": "^3.83.1",
"mongodb": "^6.13.0",
"prismarine-nbt": "^2.7.0",
"redis": "^4.7.0",
"sharp": "^0.33.5"
},
"engines": {
"node": "^22",
"pnpm": "^10",
"deno": "forbidden, use node instead",
"npm": "forbidden, use pnpm instead",
"yarn": "forbidden, use pnpm instead",
"bun": "forbidden, use pnpm instead"
},
"pnpm": {
"supportedArchitectures": {
"os": [
"linux",
"win32",
"darwin"
],
"cpu": [
"x64",
"arm64"
],
"libc": [
"musl",
"gnu",
"msvc"
]
}
}
}