-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
96 lines (96 loc) · 2.22 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
{
"name": "@vite-pwa/remix",
"type": "module",
"version": "0.1.3",
"packageManager": "[email protected]",
"description": "Zero-config PWA for Remix",
"author": "antfu <[email protected]>",
"license": "MIT",
"funding": "https://github.com/sponsors/antfu",
"homepage": "https://github.com/vite-pwa/remix#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/vite-pwa/remix.git"
},
"bugs": "https://github.com/vite-pwa/remix/issues",
"keywords": [
"remix-preset",
"remix",
"workbox",
"pwa",
"vite",
"vite-plugin"
],
"exports": {
".": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"./components": {
"types": "./dist/components/index.d.mts",
"default": "./dist/components/index.mjs"
},
"./remix-sw": {
"types": "./remix-sw.d.ts"
},
"./sw": {
"types": "./dist/sw/index.d.mts",
"default": "./dist/sw/index.mjs"
},
"./package.json": "./package.json"
},
"main": "dist/index.mjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"typesVersions": {
"*": {
"components": [
"dist/components/index.d.ts"
],
"sw": [
"dist/sw/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": {
"@remix-run/dev": ">=2.8.0",
"@vite-pwa/assets-generator": "^0.2.6",
"vite-plugin-pwa": ">=0.20.5 <1"
},
"peerDependenciesMeta": {
"@remix-run/dev": {
"optional": true
},
"@vite-pwa/assets-generator": {
"optional": true
}
},
"devDependencies": {
"@antfu/eslint-config": "^2.9.0",
"@antfu/ni": "^0.21.12",
"@remix-run/dev": "^2.8.0",
"@types/debug": "^4.1.8",
"@types/node": "^20.8.7",
"@types/react": "^18.2.22",
"@types/react-dom": "^18.2.22",
"@typescript-eslint/eslint-plugin": "^6.13.1",
"bumpp": "^9.2.0",
"eslint": "^8.57.0",
"esno": "^4.0.0",
"https-localhost": "^4.7.1",
"typescript": "^5.4.3",
"unbuild": "^2.0.0",
"vite": "^5.2.4"
}
}