mirror of
https://github.com/actualbudget/actual.git
synced 2026-05-22 04:01:17 -05:00
25 lines
716 B
JSON
25 lines
716 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.17",
|
|
"@typescript/native-preview": "beta",
|
|
"cross-env": "^10.1.0",
|
|
"typescript-strict-plugin": "^2.4.4",
|
|
"vite": "^8.0.5"
|
|
}
|
|
}
|