-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
75 lines (75 loc) · 1.76 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
{
"name": "@vite-pwa/vitepress",
"type": "module",
"version": "0.5.3",
"packageManager": "[email protected]",
"description": "Zero-config PWA for VitePress",
"author": "antfu <[email protected]>",
"license": "MIT",
"funding": "https://github.com/sponsors/antfu",
"homepage": "https://github.com/vite-pwa/vitepress#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/vite-pwa/vitepress.git"
},
"bugs": "https://github.com/vite-pwa/vitepress/issues",
"keywords": [
"vitepress",
"workbox",
"pwa",
"vite",
"vite-plugin"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.mjs"
},
"./package.json": "./package.json",
"./dist/*": "./dist/*"
},
"main": "dist/index.mjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist",
"*.d.ts"
],
"scripts": {
"build": "unbuild",
"lint": "eslint .",
"lint-fix": "nr lint --fix",
"prepublishOnly": "npm run build",
"release": "bumpp && npm publish"
},
"peerDependencies": {
"@vite-pwa/assets-generator": "^0.2.6",
"vite-plugin-pwa": ">=0.20.5 <1"
},
"peerDependenciesMeta": {
"@vite-pwa/assets-generator": {
"optional": true
}
},
"devDependencies": {
"@antfu/eslint-config": "^0.43.1",
"@antfu/ni": "^0.21.9",
"@types/debug": "^4.1.12",
"@typescript-eslint/eslint-plugin": "^6.11.0",
"bumpp": "^9.2.0",
"eslint": "^8.54.0",
"https-localhost": "^4.7.1",
"typescript": "^5.4.5",
"unbuild": "^2.0.0",
"vite": "^5.2.10",
"vite-plugin-pwa": ">=0.20.5 <1",
"vitepress": "^1.1.4"
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"@algolia/client-search"
]
}
}
}