Update packages
This commit is contained in:
parent
d4a1cde970
commit
e2aa5085c7
2 changed files with 5352 additions and 13 deletions
29
package.json
29
package.json
|
@ -2,7 +2,9 @@
|
|||
"name": "nexus-polestar",
|
||||
"version": "0.0.1",
|
||||
"license": "AGPL-3.0-or-later",
|
||||
"trustedDependencies": ["electron"],
|
||||
"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\"",
|
||||
|
@ -13,24 +15,25 @@
|
|||
"astro:build": "astro build --silent --root ./.app/astro/",
|
||||
"astro:start:vertbose": "astro dev --root ./.app/astro/",
|
||||
"astro:build:vertbose": "astro build --root ./.app/astro/",
|
||||
"electron:start": "NODE_ENV=development electron .",
|
||||
"electron:start": "NODE_ENV=development electron .build/output/electron/.app/electron/main/index.js",
|
||||
"electron:build": "electron-builder --config ./.build/electron-builder.ts",
|
||||
"electron:postinstall": "cd node_modules/electron && bun postinstall"
|
||||
},
|
||||
"compilerOptions": {
|
||||
"types": ["bun-types"]
|
||||
"types": [
|
||||
"bun-types"
|
||||
]
|
||||
},
|
||||
"dependencies": {
|
||||
"@astrojs/mdx": "latest",
|
||||
"astro": "latest",
|
||||
"electron-titlebar-respect": "latest",
|
||||
"typescript": "latest"
|
||||
"@astrojs/mdx": "^4.2.1",
|
||||
"astro": "^5.5.4",
|
||||
"typescript": "^5.8.2"
|
||||
},
|
||||
"devDependencies": {
|
||||
"concurrently": "latest",
|
||||
"electron": "latest",
|
||||
"electron-builder": "latest",
|
||||
"sass": "latest",
|
||||
"wait-on": "latest"
|
||||
"concurrently": "^9.1.2",
|
||||
"electron": "^35.0.3",
|
||||
"electron-builder": "^25.1.8",
|
||||
"sass": "^1.86.0",
|
||||
"wait-on": "^8.0.3"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue