interval-timer/package.json
dependabot[bot] 6a0326f4b8 Bump c8 from 8.0.1 to 9.0.0
Bumps [c8](https://github.com/bcoe/c8) from 8.0.1 to 9.0.0.
- [Release notes](https://github.com/bcoe/c8/releases)
- [Changelog](https://github.com/bcoe/c8/blob/main/CHANGELOG.md)
- [Commits](https://github.com/bcoe/c8/compare/v8.0.1...v9.0.0)

---
updated-dependencies:
- dependency-name: c8
  dependency-type: direct:development
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-01-08 13:21:32 +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.0",
"workbox-build": "^7.0.0",
"workbox-core": "^7.0.0",
"workbox-precaching": "^7.0.0"
},
"devDependencies": {
"@types/dom-screen-wake-lock": "^1.0.3",
"@types/node": "^20.10.6",
"@typescript-eslint/eslint-plugin": "^6.18.0",
"@typescript-eslint/parser": "^6.16.0",
"c8": "^9.0.0",
"eslint": "^8.56.0",
"jsdom": "^23.0.1",
"typescript": "^5.3.3",
"vite": "^5.0.10",
"vite-plugin-pwa": "^0.17.4",
"vitest": "^1.1.3"
},
"prettier": {
"tabWidth": 2,
"useTabs": false,
"semi": true,
"singleQuote": true,
"quoteProps": "consistent",
"trailingComma": "es5",
"endOfLine": "crlf",
"bracketSpacing": true
}
}