-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 978 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{
"name": "aurelia-workbox-cachecontrol",
"version": "1.5.3",
"license": "MIT",
"source": "src/index.ts",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"sideEffects": false,
"repository": {
"type": "git",
"url": "https://github.com/rmja/aurelia-workbox-cachecontrol.git"
},
"scripts": {
"build": "rollup -c",
"prettier": "prettier --write *.mjs src/**/*.ts",
"clean": "rimraf dist",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@rollup/plugin-typescript": "^12.1.2",
"@types/luxon": "^3.0.1",
"aurelia-framework": "^1.3.1",
"dexie": "^4.0.7",
"luxon": "^3.0.4",
"prettier": "^3.4.2",
"rimraf": "^6.0.1",
"rollup": "^4.30.0",
"tslib": "^2.8.1",
"typescript": "^5.5.3"
},
"peerDependencies": {
"aurelia-framework": "^1.3.1",
"dexie": "^3.2.0 || ^4.0.0",
"luxon": "^2.1.1 || ^3.0.0"
}
}