forked from vite-pwa/vite-plugin-pwa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
124 lines (124 loc) · 3.03 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "vite-plugin-pwa",
"version": "0.14.7",
"packageManager": "[email protected]",
"description": "Zero-config PWA for Vite",
"author": "antfu <[email protected]>",
"license": "MIT",
"funding": "https://github.com/sponsors/antfu",
"homepage": "https://github.com/antfu/vite-plugin-pwa",
"repository": {
"type": "git",
"url": "https://github.com/antfu/vite-plugin-pwa"
},
"bugs": "https://github.com/antfu/vite-plugin-pwa/issues",
"keywords": [
"react",
"pwa",
"vue",
"vitepress",
"preact",
"svelte",
"sveltekit",
"workbox",
"solidjs",
"vite",
"vite-plugin"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./types": {
"types": "./types/index.d.ts"
},
"./preact": {
"types": "./preact.d.ts"
},
"./react": {
"types": "./react.d.ts"
},
"./solid": {
"types": "./solid.d.ts"
},
"./svelte": {
"types": "./svelte.d.ts"
},
"./vanillajs": {
"types": "./vanillajs.d.ts"
},
"./vue": {
"types": "./vue.d.ts"
},
"./client": {
"types": "./client.d.ts"
},
"./info": {
"types": "./info.d.ts"
},
"./*": "./*"
},
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "index.d.ts",
"files": [
"dist",
"*.d.ts",
"types"
],
"scripts": {
"docs": "npm -C docs run dev",
"docs:build": "npm -C docs run build",
"docs:serve": "npm -C docs run serve",
"docs:preview": "npm -C docs run preview",
"lint": "eslint .",
"lint-fix": "nr lint --fix",
"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": "^3.1.0 || ^4.0.0",
"workbox-build": "^6.5.4",
"workbox-window": "^6.5.4"
},
"dependencies": {
"debug": "^4.3.4",
"fast-glob": "^3.2.12",
"pretty-bytes": "^6.0.0",
"rollup": "^3.7.2",
"@rollup/plugin-replace": "^5.0.1",
"workbox-build": "^6.5.4",
"workbox-window": "^6.5.4"
},
"devDependencies": {
"@antfu/eslint-config": "^0.33.1",
"@antfu/ni": "^0.18.8",
"@types/debug": "^4.1.7",
"@types/node": "^18.11.12",
"@types/prompts": "^2.4.2",
"@types/react": "^18.0.26",
"@types/workbox-build": "^5.0.1",
"@typescript-eslint/eslint-plugin": "^5.46.0",
"eslint": "^8.29.0",
"esno": "0.16.3",
"kolorist": "^1.6.0",
"preact": "^10.11.3",
"prompts": "^2.4.2",
"react": "^18.2.0",
"rollup": "^3.7.2",
"solid-js": "^1.6.4",
"svelte": "^3.54.0",
"tsup": "^6.2.3",
"typescript": "^4.9.4",
"vite": "^4.0.0",
"vue": "^3.2.45"
}
}