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

36 lines
1.4 KiB
JSON
Raw Permalink Normal View History

2023-08-30 01:46:33 -04:00
{
"name": "nexus-polestar",
"version": "0.0.1",
"license": "AGPL-3.0-or-later",
2023-09-10 05:31:31 -04:00
"trustedDependencies": ["electron"],
"main": ".build/output/electron/app/electron/main/index.js",
2023-08-30 01:46:33 -04:00
"scripts": {
2023-09-10 05:31:31 -04:00
"start": "concurrently -k -r \"bun run astro:start\" \"wait-on http://localhost:4321 && bun run electron:start\"",
2023-09-12 03:56:41 -04:00
"start:verbose": "concurrently -k -r \"bun run astro:start:verbose\" \"wait-on http://localhost:4321 && bun run electron:start\"",
2023-09-10 05:31:31 -04:00
"build": "bun run tsc && bun run astro:build && bun run electron:build",
2023-08-30 01:46:33 -04:00
"tsc": "tsc -p .build/devlopment/tsconfig-build.json",
2023-09-12 03:56:41 -04:00
"astro:start": "astro dev --silent --root ./.app/astro/",
2023-09-10 05:31:31 -04:00
"astro:build": "astro build --silent --root ./.app/astro/",
2023-09-12 03:56:41 -04:00
"astro:start:vertbose": "astro dev --root ./.app/astro/",
"astro:build:vertbose": "astro build --root ./.app/astro/",
2023-08-30 01:46:33 -04:00
"electron:start": "NODE_ENV=development electron .",
2023-09-10 18:01:53 -04:00
"electron:build": "electron-builder --config ./.build/electron-builder.ts",
"electron:postinstall": "cd node_modules/electron && bun postinstall"
2023-09-10 05:31:31 -04:00
},
"compilerOptions": {
"types": ["bun-types"]
2023-08-30 01:46:33 -04:00
},
"dependencies": {
2023-09-12 03:56:41 -04:00
"@astrojs/mdx": "latest",
"astro": "latest",
"electron-titlebar-respect": "latest",
"typescript": "latest"
2023-08-30 01:46:33 -04:00
},
"devDependencies": {
2023-09-12 03:56:41 -04:00
"concurrently": "latest",
2023-09-10 05:31:31 -04:00
"electron": "latest",
2023-09-12 03:56:41 -04:00
"electron-builder": "latest",
"sass": "latest",
"wait-on": "latest"
2023-09-09 20:01:57 -04:00
}
2023-09-12 03:56:41 -04:00
}