mirror of
https://github.com/tiennm99/ai-labs.git
synced 2026-09-04 17:09:11 +00:00
Replace bun.lock with package-lock.json and add package.json#allowScripts for esbuild and sharp, the two native packages whose install scripts npm 11 gates. Update README, RUNBOOK, TODOS and CLAUDE.md to npm commands. CLAUDE.md also claimed ./setup requires bun; it does not any more. Verified: astro check 0 errors, 39 tests pass, 4 pages build, clean npm ci.
33 lines
819 B
JSON
33 lines
819 B
JSON
{
|
|
"name": "try-gstack",
|
|
"version": "0.0.4.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"description": "Hình Học Sống — Interactive Vietnamese THCS geometry visualizer (lớp 7-9). Static site, drag-to-explore theorems.",
|
|
"scripts": {
|
|
"dev": "astro dev",
|
|
"build": "astro build",
|
|
"preview": "astro preview",
|
|
"typecheck": "astro check",
|
|
"test": "vitest run",
|
|
"test:watch": "vitest"
|
|
},
|
|
"dependencies": {
|
|
"@astrojs/sitemap": "^3.4.0",
|
|
"@astrojs/tailwind": "^6.0.0",
|
|
"@fontsource/be-vietnam-pro": "^5.2.0",
|
|
"astro": "^5.14.0",
|
|
"tailwindcss": "^3.4.17"
|
|
},
|
|
"devDependencies": {
|
|
"@astrojs/check": "^0.9.9",
|
|
"@types/node": "^22.10.0",
|
|
"typescript": "^5.7.0",
|
|
"vitest": "^3.2.0"
|
|
},
|
|
"allowScripts": {
|
|
"esbuild": true,
|
|
"sharp": true
|
|
}
|
|
}
|