mirror of
https://github.com/actualbudget/actual.git
synced 2026-03-11 12:43:09 -05:00
* fix negative amount parsing (#4489) * fix negative amount parsing * note * Remove used release notes * Empty commit to bump ci * Fix number input on mobile with hidden decimals (#4503) * Fix number input on mobile with hidden decimals * Add release notes * Remove used release notes * Empty commit to bump ci * Bump non-server versions * Bump sync-server --------- Co-authored-by: Matt Fiddaman <github@m.fiddaman.uk> Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
104 lines
2.7 KiB
JSON
104 lines
2.7 KiB
JSON
{
|
|
"name": "desktop-electron",
|
|
"author": "Actual",
|
|
"productName": "Actual",
|
|
"description": "A simple and powerful personal finance system",
|
|
"version": "25.3.1",
|
|
"scripts": {
|
|
"clean": "rm -rf dist",
|
|
"update-client": "bin/update-client",
|
|
"build": "yarn build:dist && electron-builder",
|
|
"build:dist": "tsc --p tsconfig.dist.json && yarn copy-static-assets",
|
|
"copy-static-assets": "copyfiles --exclude 'build/**/*' **/*.html icons/**/* build",
|
|
"watch": "yarn build:dist && cross-env ACTUAL_DOCUMENT_DIR=\"../../data\" ACTUAL_DATA_DIR=\"../../data\" electron ."
|
|
},
|
|
"main": "build/index.js",
|
|
"build": {
|
|
"appId": "com.actualbudget.actual",
|
|
"files": [
|
|
"build",
|
|
"!node_modules/better-sqlite3/{benchmark,src,bin,docs,deps,build/Release/obj,build/Release/sqlite3.a,build/Release/test_extension.node}",
|
|
"!**/*.js.map",
|
|
"!**/stats.json",
|
|
"!build/client-build/sql-wasm.wasm",
|
|
"!build/loot-core/lib-dist/electron/{browser,bundle.mobile*}"
|
|
],
|
|
"beforePack": "./build/beforePackHook.js",
|
|
"mac": {
|
|
"category": "public.app-category.finance",
|
|
"icon": "icons/icon.icns",
|
|
"hardenedRuntime": true,
|
|
"gatekeeperAssess": false,
|
|
"artifactName": "${productName}-mac-${arch}.${ext}",
|
|
"notarize": {
|
|
"teamId": "79ANZ983YF"
|
|
},
|
|
"target": [
|
|
{
|
|
"target": "dmg",
|
|
"arch": [
|
|
"x64",
|
|
"arm64"
|
|
]
|
|
}
|
|
]
|
|
},
|
|
"linux": {
|
|
"target": [
|
|
"flatpak",
|
|
"AppImage"
|
|
],
|
|
"artifactName": "${productName}-linux.${ext}"
|
|
},
|
|
"flatpak": {
|
|
"runtimeVersion": "23.08",
|
|
"baseVersion": "23.08"
|
|
},
|
|
"win": {
|
|
"target": [
|
|
{
|
|
"target": "appx",
|
|
"arch": [
|
|
"ia32",
|
|
"x64",
|
|
"arm64"
|
|
]
|
|
},
|
|
{
|
|
"target": "nsis",
|
|
"arch": [
|
|
"ia32",
|
|
"x64",
|
|
"arm64"
|
|
]
|
|
}
|
|
],
|
|
"icon": "icons/icon.ico",
|
|
"artifactName": "${productName}-windows-${arch}.${ext}"
|
|
},
|
|
"appx": {
|
|
"identityName": "actualbudget.org.ActualBudget",
|
|
"publisherDisplayName": "actualbudget.org",
|
|
"displayName": "Actual Budget",
|
|
"publisher": "CN=19454997-90E1-4473-879D-96D6A77A6056"
|
|
},
|
|
"npmRebuild": false
|
|
},
|
|
"dependencies": {
|
|
"better-sqlite3": "^11.7.0",
|
|
"fs-extra": "^11.2.0",
|
|
"promise-retry": "^2.0.1"
|
|
},
|
|
"devDependencies": {
|
|
"@electron/notarize": "2.4.0",
|
|
"@electron/rebuild": "3.6.0",
|
|
"@types/copyfiles": "^2",
|
|
"@types/fs-extra": "^11",
|
|
"copyfiles": "^2.4.1",
|
|
"cross-env": "^7.0.3",
|
|
"electron": "30.0.6",
|
|
"electron-builder": "24.13.3",
|
|
"typescript": "^5.5.4"
|
|
}
|
|
}
|