2025-12-29 15:30:57 +05:30
{
"name" : "x" ,
"private" : true ,
"type" : "module" ,
2026-01-17 10:27:30 +05:30
"version" : "0.1.0" ,
2025-12-29 15:30:57 +05:30
"scripts" : {
"dev" : "npm run deps && concurrently -k \"npm:renderer\" \"npm:main\"" ,
"renderer" : "cd apps/renderer && npm run dev" ,
"shared" : "cd packages/shared && npm run build" ,
2026-04-15 19:10:41 +08:00
"shared:typecheck" : "cd packages/shared && npx tsc --noEmit" ,
2025-12-29 15:30:57 +05:30
"core" : "cd packages/core && npm run build" ,
2026-04-15 19:10:41 +08:00
"core:typecheck" : "cd packages/core && npx tsc --noEmit" ,
"core:test" : "cd packages/core && npm test" ,
2025-12-29 15:30:57 +05:30
"preload" : "cd apps/preload && npm run build" ,
2026-04-15 19:10:41 +08:00
"preload:typecheck" : "cd apps/preload && npx tsc --noEmit" ,
2025-12-29 15:30:57 +05:30
"deps" : "npm run shared && npm run core && npm run preload" ,
"main" : "wait-on http://localhost:5173 && cd apps/main && npm run build && npm run start" ,
2026-04-15 19:10:41 +08:00
"main:typecheck" : "cd apps/main && npx tsc --noEmit" ,
"renderer:typecheck" : "cd apps/renderer && npx tsc -p tsconfig.app.json --noEmit && npx tsc -p tsconfig.node.json --noEmit" ,
"typecheck" : "npm run shared:typecheck && npm run core:typecheck && npm run deps && npm run preload:typecheck && npm run main:typecheck && npm run renderer:typecheck" ,
"test" : "npm run shared && npm run core:test" ,
"verify" : "npm run lint && npm run typecheck && npm run test" ,
2025-12-29 15:30:57 +05:30
"lint" : "eslint ." ,
"lint:fix" : "eslint . --fix"
} ,
"devDependencies" : {
"@eslint/js" : "^9.39.2" ,
"@types/node" : "^25.0.3" ,
"concurrently" : "^9.2.1" ,
"eslint" : "^9.39.2" ,
"eslint-plugin-react-hooks" : "^7.0.1" ,
"eslint-plugin-react-refresh" : "^0.4.26" ,
"globals" : "^16.5.0" ,
"typescript" : "^5.9.3" ,
"typescript-eslint" : "^8.50.1" ,
"wait-on" : "^9.0.3"
}
2026-04-15 19:10:41 +08:00
}