interval-timer/package.json
dependabot[bot] 0c3aaa72cc Bump @typescript-eslint/eslint-plugin from 6.14.0 to 6.15.0
Bumps [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin) from 6.14.0 to 6.15.0.
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/eslint-plugin/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v6.15.0/packages/eslint-plugin)

---
updated-dependencies:
- dependency-name: "@typescript-eslint/eslint-plugin"
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2023-12-25 13:18:39 +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.5",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.14.0",
"c8": "^8.0.1",
"eslint": "^8.56.0",
"jsdom": "^23.0.1",
"typescript": "^5.3.3",
"vite": "^5.0.10",
"vite-plugin-pwa": "^0.17.4",
"vitest": "^1.0.4"
},
"prettier": {
"tabWidth": 2,
"useTabs": false,
"semi": true,
"singleQuote": true,
"quoteProps": "consistent",
"trailingComma": "es5",
"endOfLine": "crlf",
"bracketSpacing": true
}
}