1
Fork 0
This repository has been archived on 2024-05-27. You can view files and clone it, but cannot push or open issues or pull requests.
Nexus-Polestar/package.json
2023-09-10 18:01:53 -04:00

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",
"electron:postinstall": "cd node_modules/electron && bun postinstall"
},
"compilerOptions": {
"types": ["bun-types"]
},
"dependencies": {
"@astrojs/mdx": "^1.0.3",
"astro": "^3.0.12",
"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"
}
}