-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
73 lines (73 loc) · 1.77 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "@vite-pwa/astro",
"type": "module",
"version": "0.4.3",
"packageManager": "pnpm@9.9.0",
"description": "Zero-config PWA for Astro",
"author": "antfu <anthonyfu117@hotmail.com>",
"license": "MIT",
"funding": "https://github.com/sponsors/antfu",
"homepage": "https://github.com/vite-pwa/astro#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/vite-pwa/astro.git"
},
"bugs": "https://github.com/vite-pwa/astro/issues",
"keywords": [
"astro-integration",
"astro",
"workbox",
"pwa",
"vite",
"vite-plugin"
],
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"./package.json": "./package.json"
},
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist",
"*.d.ts"
],
"scripts": {
"build": "unbuild && esno scripts/postbuild.ts",
"lint": "eslint .",
"lint-fix": "nr lint --fix",
"prepublishOnly": "npm run build",
"release": "bumpp && npm publish"
},
"peerDependencies": {
"@vite-pwa/assets-generator": "^0.2.6",
"astro": "^1.6.0 || ^2.0.0 || ^3.0.0 || ^4.0.0",
"vite-plugin-pwa": ">=0.20.5 <1"
},
"peerDependenciesMeta": {
"@vite-pwa/assets-generator": {
"optional": true
}
},
"dependencies": {
"vite-plugin-pwa": ">=0.20.5 <1"
},
"devDependencies": {
"@antfu/eslint-config": "^0.43.1",
"@antfu/ni": "^0.21.12",
"@types/debug": "^4.1.8",
"@types/node": "^20.8.7",
"@typescript-eslint/eslint-plugin": "^6.13.1",
"astro": "^4.0.1",
"bumpp": "^9.2.0",
"eslint": "^8.54.0",
"esno": "^4.0.0",
"https-localhost": "^4.7.1",
"typescript": "^5.4.5",
"unbuild": "^2.0.0",
"vite": "^5.0.0"
}
}