forked from kevinmarrec/nuxt-pwa-module
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.56 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
{
"name": "@kevinmarrec/nuxt-pwa",
"version": "0.3.1",
"description": "Zero config PWA solution for Nuxt 3",
"author": "Kevin Marrec <kevin@marrec.io>",
"license": "MIT",
"homepage": "https://github.com/kevinmarrec/nuxt-pwa-module#readme",
"repository": "https://github.com/kevinmarrec/nuxt-pwa-module",
"keywords": [
"nuxt",
"pwa",
"module"
],
"files": [
"dist",
"lib",
"templates"
],
"exports": {
".": {
"import": "./dist/module.mjs",
"require": "./dist/module.cjs"
}
},
"type": "module",
"main": "./dist/module.cjs",
"module": "./dist/module.mjs",
"types": "./dist/module.d.ts",
"scripts": {
"build": "nuxt-module-build",
"dev": "nuxi dev example",
"example:build": "nuxi build example",
"example:start": "node example/.output/server/index.mjs",
"lint": "eslint --ext js,ts,vue .",
"test": "vitest run --reporter verbose",
"test:coverage": "pnpm test -- --coverage"
},
"devDependencies": {
"@nuxt/module-builder": "^0.1.7",
"@nuxt/test-utils": "3.0.0-rc.4",
"@nuxtjs/eslint-config-typescript": "^10.0.0",
"@types/fs-extra": "^9.0.13",
"@types/sharp": "^0.30.4",
"@unocss/nuxt": "^0.39.3",
"c8": "^7.11.3",
"eslint": "^8.18.0",
"nuxt": "^3.0.0-rc.3",
"standard-version": "^9.5.0",
"typescript": "^4.7.4",
"vitest": "^0.16.0"
},
"dependencies": {
"hasha": "^5.2.2",
"sharp": "^0.30.7",
"std-env": "^3.1.1"
},
"build": {
"externals": [
"consola",
"pathe"
]
},
"packageManager": "pnpm@7.3.0"
}