33 lines
1.1 KiB
JSON
33 lines
1.1 KiB
JSON
{
|
|
"name": "nexus-polestar",
|
|
"version": "0.0.1",
|
|
"license": "AGPL-3.0-or-later",
|
|
"trustedDependencies": ["electron"],
|
|
"main": ".build/output/electron/app/electron/main/index.js",
|
|
"scripts": {
|
|
"start": "concurrently -k -r \"bun run astro:start\" \"wait-on http://localhost:4321 && bun run electron:start\"",
|
|
"build": "bun run tsc && bun run astro:build && bun run electron:build",
|
|
"tsc": "tsc -p .build/devlopment/tsconfig-build.json",
|
|
"astro:start": "astro dev --root ./.app/astro/",
|
|
"astro:build": "astro build --silent --root ./.app/astro/",
|
|
"electron:start": "NODE_ENV=development electron .",
|
|
"electron:build": "electron-builder --config ./.build/electron-builder.ts"
|
|
},
|
|
"compilerOptions": {
|
|
"types": ["bun-types"]
|
|
},
|
|
"dependencies": {
|
|
"@astrojs/mdx": "^1.0.3",
|
|
"astro": "^3.0.12",
|
|
"astro-color-scheme": "^1.1.2",
|
|
"electron-titlebar-respect": "^1.1.2",
|
|
"typescript": "^5.2.2"
|
|
},
|
|
"devDependencies": {
|
|
"concurrently": "^8.2.1",
|
|
"electron": "latest",
|
|
"electron-builder": "^24.6.4",
|
|
"sass": "^1.66.1",
|
|
"wait-on": "^7.0.1"
|
|
}
|
|
}
|