Files
inkling/package.json
altair823 be24458450 chore(deps): bump uuid to ^14.0.0
v4/v7 imports stay API-compatible — typecheck and unit suite (52/52)
both pass against the new resolution. The caret range deviates from
the slice's strict-pin invariant (spec §7.1); revisit if reproducible
builds become an issue.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-04-25 17:33:32 +09:00

47 lines
1.4 KiB
JSON

{
"name": "inkling",
"version": "0.2.0",
"private": true,
"main": "out/main/index.js",
"scripts": {
"dev": "electron-vite dev",
"build": "electron-vite build",
"start": "electron-vite preview",
"rebuild:node": "cd node_modules/better-sqlite3 && prebuild-install",
"rebuild:electron": "cd node_modules/better-sqlite3 && prebuild-install --runtime=electron --target=41.3.0",
"pretest": "npm run rebuild:node",
"pretest:integration": "npm run rebuild:node",
"pretest:e2e": "npm run rebuild:electron && npm run build",
"prestart": "npm run rebuild:electron",
"predev": "npm run rebuild:electron",
"test": "vitest run",
"test:watch": "vitest",
"test:integration": "INKLING_INTEGRATION=1 vitest run tests/integration",
"test:e2e": "playwright test",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"better-sqlite3": "12.9.0",
"electron": "41.3.0",
"electron-log": "5.2.0",
"react": "19.2.5",
"react-dom": "19.2.5",
"uuid": "^14.0.0",
"zod": "4.3.6",
"zustand": "5.0.12"
},
"devDependencies": {
"@playwright/test": "1.59.1",
"@types/better-sqlite3": "7.6.11",
"@types/node": "24.0.0",
"@types/react": "19.0.0",
"@types/react-dom": "19.0.0",
"@vitejs/plugin-react": "5.1.4",
"electron-vite": "5.0.0",
"typescript": "6.0.3",
"undici": "8.1.0",
"vite": "7.3.2",
"vitest": "4.1.5"
}
}