interval-timer/package.json
Renovate Bot 97733c80d5
All checks were successful
Build and Test / build-and-test (pull_request) Successful in 1m9s
Publish Docker image / Push Docker image to GitHub Packages (push) Successful in 9m7s
Update dependency jsdom to v25
2024-08-25 11:01:01 +00:00

48 lines
1.2 KiB
JSON

{
"name": "interval-timer",
"version": "0.0.1",
"description": "An interval timer PWA",
"main": "index.js",
"scripts": {
"build": "tsc && vite build",
"coverage": "vitest --coverage",
"dev": "vite",
"lint": "eslint src/**/*.ts",
"start": "npm run dev",
"start-remote": "vite --host",
"test": "vitest"
},
"author": "William Patrick Brawner <me@wbrawner.com>",
"license": "AGPL-3.0-only",
"dependencies": {
"@vaadin/router": "^1.7.5",
"idb": "^8.0.0",
"lit": "^3.1.4",
"workbox-build": "^7.1.1",
"workbox-core": "^7.1.0",
"workbox-precaching": "^7.1.0"
},
"devDependencies": {
"@types/dom-screen-wake-lock": "^1.0.3",
"@types/node": "^22.0.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"c8": "^10.1.2",
"eslint": "^9.0.0",
"globals": "^15.8.0",
"jsdom": "^25.0.0",
"typescript": "^5.4.5",
"vite": "^5.3.1",
"vite-plugin-pwa": "^0.20.0",
"vitest": "^2.0.0"
},
"prettier": {
"tabWidth": 2,
"useTabs": false,
"semi": true,
"singleQuote": true,
"quoteProps": "consistent",
"trailingComma": "es5",
"endOfLine": "crlf",
"bracketSpacing": true
}
}