Files
actual/packages/plugins-service/package.json
Julian Dominguez-Schatz a4eb17eff2 Upgrade to Vite 8 (#7184)
* 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>
2026-03-15 23:16:39 +00:00

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"
}
}