-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
69 lines (69 loc) · 1.59 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
{
"name": "@vite-pwa/sveltekit",
"type": "module",
"version": "0.1.1",
"packageManager": "[email protected]",
"description": "Zero-config PWA for SvelteKit",
"author": "antfu <[email protected]>",
"license": "MIT",
"funding": "https://github.com/sponsors/antfu",
"homepage": "https://github.com/vite-pwa/sveltekit#readme",
"repository": {
"type": "git",
"url": "https://github.com/vite-pwa/sveltekit.git"
},
"bugs": "https://github.com/vite-pwa/sveltekit/issues",
"keywords": [
"sveltekit",
"workbox",
"pwa",
"vite",
"vite-plugin"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs"
}
},
"types": "dist/index.d.ts",
"typesVersions": {
"*": {
"*": [
"./dist/index.d.ts"
]
}
},
"files": [
"dist",
"*.d.ts"
],
"engines": {
"node": ">=16.14"
},
"scripts": {
"build": "unbuild",
"lint": "eslint .",
"lint-fix": "nr lint --fix",
"prepublishOnly": "npm run build",
"release": "npx bumpp --push --tag --commit && npm publish --access=public"
},
"peerDependencies": {
"@sveltejs/kit": "^1.0.0",
"vite-plugin-pwa": "^0.14.0"
},
"devDependencies": {
"@antfu/eslint-config": "^0.33.1",
"@antfu/ni": "^0.18.8",
"@types/debug": "^4.1.7",
"@types/node": "^18.11.13",
"@types/workbox-build": "^5.0.1",
"@typescript-eslint/eslint-plugin": "^5.46.0",
"eslint": "^8.29.0",
"svelte": "^3.54.0",
"typescript": "^4.9.4",
"unbuild": "^1.0.2",
"vite": "^4.0.0",
"vite-plugin-pwa": "^0.14.0"
}
}