interval-timer/package.json
dependabot[bot] 8d46c9d557 Bump c8 from 9.1.0 to 10.1.2
Bumps [c8](https://github.com/bcoe/c8) from 9.1.0 to 10.1.2.
- [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/v9.1.0...v10.1.2)

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

Signed-off-by: dependabot[bot] <support@github.com>
2024-06-17 07:09:03 -06:00

47 lines
1.1 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": "^20.14.2",
"@typescript-eslint/eslint-plugin": "^7.13.0",
"c8": "^10.1.2",
"eslint": "^8.57.0",
"jsdom": "^24.1.0",
"typescript": "^5.4.5",
"vite": "^5.3.1",
"vite-plugin-pwa": "^0.20.0",
"vitest": "^1.6.0"
},
"prettier": {
"tabWidth": 2,
"useTabs": false,
"semi": true,
"singleQuote": true,
"quoteProps": "consistent",
"trailingComma": "es5",
"endOfLine": "crlf",
"bracketSpacing": true
}
}