mirror of
https://github.com/actualbudget/actual.git
synced 2026-03-22 00:13:45 -05:00
* Upgrade to Vite 8 * Add release notes * PR feedback * [autofix.ci] apply automated fixes * PR feedback * fix: inject process.env * Restore deleted release note * Clean up and typecheck * Fix dev server * Fix type error * Fix tests * PR feedback --------- Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
25 lines
733 B
JSON
25 lines
733 B
JSON
{
|
|
"name": "plugins-service",
|
|
"version": "0.0.1",
|
|
"description": "Plugin service worker for Actual",
|
|
"license": "ISC",
|
|
"author": "",
|
|
"main": "plugin-sw.js",
|
|
"scripts": {
|
|
"build": "cross-env NODE_ENV=production ./bin/build-service-worker",
|
|
"build-dev": "cross-env NODE_ENV=development ./bin/build-service-worker",
|
|
"watch": "cross-env NODE_ENV=development ./bin/build-service-worker --watch",
|
|
"typecheck": "tsgo -b && tsc-strict"
|
|
},
|
|
"dependencies": {
|
|
"workbox-precaching": "^7.4.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^22.19.10",
|
|
"@typescript/native-preview": "^7.0.0-dev.20260309.1",
|
|
"cross-env": "^10.1.0",
|
|
"typescript-strict-plugin": "^2.4.4",
|
|
"vite": "^8.0.0"
|
|
}
|
|
}
|