mirror of
https://github.com/tiennm99/rubik.git
synced 2026-09-01 12:20:46 +00:00
Replace pnpm-lock.yaml with package-lock.json.
pnpm-workspace.yaml pinned npm only where cubejs depends on it
("cubejs>npm: ^11.14.1"). npm expresses that path scoping with a nested
override, so the pin stays scoped to cubejs instead of applying to every copy of
npm in the tree. Verified: cubejs is still the only overridden path.
42 lines
1.1 KiB
JSON
42 lines
1.1 KiB
JSON
{
|
|
"name": "rubik",
|
|
"description": "Interactive 3D Rubik's 3x3 cube simulator in the browser (Three.js + Svelte)",
|
|
"version": "0.1.0",
|
|
"type": "module",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/tiennm99/rubik.git"
|
|
},
|
|
"author": "tiennm99",
|
|
"license": "Apache-2.0",
|
|
"licenseUrl": "https://www.apache.org/licenses/LICENSE-2.0",
|
|
"bugs": {
|
|
"url": "https://github.com/tiennm99/rubik/issues"
|
|
},
|
|
"homepage": "https://tiennm99.github.io/rubik/",
|
|
"scripts": {
|
|
"dev": "vite --config vite/config.dev.mjs",
|
|
"dev:codeserver": "vite --config vite/config.codeserver.mjs",
|
|
"build": "vite build --config vite/config.prod.mjs",
|
|
"preview": "vite preview --config vite/config.prod.mjs",
|
|
"test": "vitest run",
|
|
"test:watch": "vitest"
|
|
},
|
|
"dependencies": {
|
|
"@tweenjs/tween.js": "^25.0.0",
|
|
"cubejs": "^1.3.2",
|
|
"three": "^0.185.1"
|
|
},
|
|
"devDependencies": {
|
|
"@sveltejs/vite-plugin-svelte": "^7.2.0",
|
|
"svelte": "^5.56.4",
|
|
"vite": "^8.1.4",
|
|
"vitest": "^4.1.10"
|
|
},
|
|
"overrides": {
|
|
"cubejs": {
|
|
"npm": "^11.14.1"
|
|
}
|
|
}
|
|
}
|