2022-08-15 03:24:15 +00:00
|
|
|
{
|
2023-12-17 16:53:02 +00:00
|
|
|
"name": "interval-timer",
|
2022-08-15 03:24:15 +00:00
|
|
|
"version": "0.0.1",
|
2023-12-17 16:53:02 +00:00
|
|
|
"description": "An interval timer PWA",
|
2022-08-15 03:24:15 +00:00
|
|
|
"main": "index.js",
|
|
|
|
"scripts": {
|
|
|
|
"build": "tsc && vite build",
|
|
|
|
"coverage": "vitest --coverage",
|
2023-12-17 16:53:02 +00:00
|
|
|
"dev": "vite",
|
2022-08-15 03:24:15 +00:00
|
|
|
"lint": "eslint src/**/*.ts",
|
|
|
|
"start": "npm run dev",
|
|
|
|
"start-remote": "vite --host",
|
|
|
|
"test": "vitest"
|
|
|
|
},
|
2023-12-17 16:53:02 +00:00
|
|
|
"author": "William Patrick Brawner <me@wbrawner.com>",
|
|
|
|
"license": "AGPL-3.0-only",
|
2022-08-15 03:24:15 +00:00
|
|
|
"dependencies": {
|
2024-10-15 09:01:55 +00:00
|
|
|
"@vaadin/router": "^2.0.0",
|
2023-12-04 13:04:46 +00:00
|
|
|
"idb": "^8.0.0",
|
2024-06-10 13:53:43 +00:00
|
|
|
"lit": "^3.1.4",
|
2024-06-03 13:07:25 +00:00
|
|
|
"workbox-build": "^7.1.1",
|
2024-04-29 13:26:27 +00:00
|
|
|
"workbox-core": "^7.1.0",
|
2024-04-29 13:27:48 +00:00
|
|
|
"workbox-precaching": "^7.1.0"
|
2022-08-15 03:24:15 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2023-11-13 13:18:20 +00:00
|
|
|
"@types/dom-screen-wake-lock": "^1.0.3",
|
2024-07-28 12:00:57 +00:00
|
|
|
"@types/node": "^22.0.0",
|
2024-07-31 19:00:46 +00:00
|
|
|
"@typescript-eslint/eslint-plugin": "^8.0.0",
|
2024-06-17 13:08:31 +00:00
|
|
|
"c8": "^10.1.2",
|
2024-07-31 21:00:45 +00:00
|
|
|
"eslint": "^9.0.0",
|
2024-08-01 02:38:47 +00:00
|
|
|
"globals": "^15.8.0",
|
2024-08-25 11:01:01 +00:00
|
|
|
"jsdom": "^25.0.0",
|
2024-04-15 13:12:30 +00:00
|
|
|
"typescript": "^5.4.5",
|
2024-06-17 13:06:48 +00:00
|
|
|
"vite": "^5.3.1",
|
2024-11-13 11:01:04 +00:00
|
|
|
"vite-plugin-pwa": "^0.21.0",
|
2024-07-08 12:00:55 +00:00
|
|
|
"vitest": "^2.0.0"
|
2022-08-15 03:24:15 +00:00
|
|
|
},
|
|
|
|
"prettier": {
|
|
|
|
"tabWidth": 2,
|
|
|
|
"useTabs": false,
|
|
|
|
"semi": true,
|
|
|
|
"singleQuote": true,
|
|
|
|
"quoteProps": "consistent",
|
|
|
|
"trailingComma": "es5",
|
|
|
|
"endOfLine": "crlf",
|
|
|
|
"bracketSpacing": true
|
|
|
|
}
|
|
|
|
}
|