forked from vite-pwa/vite-plugin-pwa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.18 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
74
75
76
77
78
79
80
81
82
83
{
"name": "vite-plugin-pwa",
"version": "0.11.11",
"description": "Zero-config PWA for Vite",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/antfu/vite-plugin-pwa"
},
"keywords": [
"react",
"pwa",
"vue",
"vitepress",
"preact",
"svelte",
"sveltekit",
"workbox",
"solidjs",
"vite",
"vite-plugin"
],
"funding": "https://github.com/sponsors/antfu",
"author": "antfu <[email protected]>",
"files": [
"dist",
"index.d.ts",
"client.d.ts"
],
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "index.d.ts",
"homepage": "https://github.com/antfu/vite-plugin-pwa",
"bugs": "https://github.com/antfu/vite-plugin-pwa/issues",
"scripts": {
"docs": "npm -C docs run dev",
"docs:build": "npm -C docs run build",
"docs:serve": "npm -C docs run serve",
"dev": "esno scripts/dev.ts",
"build": "esno scripts/build.ts",
"prepublishOnly": "npm run build",
"release": "npx bumpp --push --tag --commit && npm publish",
"examples": "esno scripts/run-examples.ts",
"example:vue:dev:cdn": "npm -C examples/vue-basic-cdn run dev",
"example:vue:build:cdn": "npm -C examples/vue-basic-cdn run build",
"example:vue:start:cdn": "npm -C examples/vue-basic-cdn run start"
},
"peerDependencies": {
"vite": "^2.0.0",
"workbox-build": "^6.4.0",
"workbox-window": "^6.4.0"
},
"dependencies": {
"debug": "^4.3.3",
"fast-glob": "^3.2.7",
"pretty-bytes": "^5.6.0",
"rollup": "^2.60.2",
"workbox-build": "^6.4.2",
"workbox-window": "^6.4.2"
},
"devDependencies": {
"@antfu/eslint-config": "^0.12.2",
"@antfu/ni": "^0.11.1",
"@types/debug": "^4.1.7",
"@types/prompts": "^2.4.0",
"@types/react": "^17.0.37",
"@types/workbox-build": "^5.0.1",
"@typescript-eslint/eslint-plugin": "^5.6.0",
"eslint": "^8.4.1",
"esno": "^0.12.1",
"kolorist": "^1.5.0",
"preact": "^10.6.3",
"prompts": "^2.4.2",
"react": "^17.0.2",
"rollup": "^2.60.2",
"solid-js": "^1.2.6",
"svelte": "^3.44.2",
"tsup": "^5.10.3",
"typescript": "^4.5.2",
"vite": "^2.7.1",
"vue": "^3.2.24"
}
}