mirror of
https://github.com/tiennm99/rplace.git
synced 2026-08-31 16:26:36 +00:00
Replace pnpm-lock.yaml with package-lock.json. pnpm-workspace.yaml's allowBuilds becomes package.json#allowScripts, which npm 11 gates the same way, listing only the packages actually present in the tree.
31 lines
697 B
JSON
31 lines
697 B
JSON
{
|
|
"name": "rplace",
|
|
"private": true,
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "wrangler dev",
|
|
"dev:client": "vite dev",
|
|
"build": "vite build",
|
|
"deploy": "vite build && wrangler deploy",
|
|
"preview": "vite build && wrangler dev",
|
|
"test": "vitest run --config vitest.config.js",
|
|
"test:watch": "vitest --config vitest.config.js"
|
|
},
|
|
"dependencies": {
|
|
"hono": "^4.12.30",
|
|
"pixi.js": "^8.19.0"
|
|
},
|
|
"devDependencies": {
|
|
"@sveltejs/vite-plugin-svelte": "^7.2.0",
|
|
"svelte": "^5.56.6",
|
|
"vite": "^8.1.5",
|
|
"vitest": "^4.1.10",
|
|
"wrangler": "^4.112.0",
|
|
"ws": "^8.21.0"
|
|
},
|
|
"allowScripts": {
|
|
"esbuild": true,
|
|
"workerd": true
|
|
}
|
|
}
|