-
-
Notifications
You must be signed in to change notification settings - Fork 50
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.41 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 2.41 KB
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
{
"name": "@nuxtjs/ionic",
"version": "0.13.1",
"license": "MIT",
"repository": "nuxt-modules/ionic",
"description": "Ionic integration for Nuxt",
"keywords": [
"nuxt",
"module",
"nuxt-module",
"ionic",
"ionic-framework",
"web-components",
"native",
"android",
"ios"
],
"author": {
"name": "Daniel Roe <daniel@roe.dev>",
"url": "https://github.com/danielroe"
},
"type": "module",
"exports": {
".": {
"types": "./dist/types.d.ts",
"import": "./dist/module.mjs",
"require": "./dist/module.cjs"
}
},
"main": "./dist/module.cjs",
"types": "./dist/types.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "pnpm dev:prepare && nuxt-module-build build",
"dev": "nuxi dev playground",
"dev:build": "nuxi build playground",
"dev:prepare": "pnpm nuxt-module-build build --stub && nuxt-module-build prepare && nuxi prepare playground",
"docs:dev": "nuxi dev docs",
"docs:build": "nuxi build docs",
"lint": "pnpm lint:all:eslint",
"lint:all:eslint": "pnpm lint:eslint .",
"lint:eslint": "eslint --fix",
"prepack": "pnpm build",
"prepare": "husky install",
"prepublishOnly": "pnpm lint && pnpm test",
"release": "bumpp && npm publish && git push --follow-tags",
"test": "vitest run",
"test:types": "tsc --noEmit",
"postinstall": "husky install"
},
"dependencies": {
"@capacitor/cli": "^6.0.0",
"@capacitor/core": "^6.0.0",
"@ionic/cli": "^7.2.0",
"@ionic/vue": "^8.0.0",
"@ionic/vue-router": "^8.0.0",
"@kevinmarrec/nuxt-pwa": "^0.17.0",
"@nuxt/kit": "^3.9.1",
"ionicons": "^7.3.1",
"pathe": "^1.1.2",
"pkg-types": "^1.0.3",
"svgo": "^3.2.0",
"ufo": "^1.5.3",
"unimport": "^3.7.1"
},
"devDependencies": {
"@nuxt/eslint-config": "0.3.8",
"@nuxt/module-builder": "0.6.0",
"@nuxt/schema": "3.9.1",
"@nuxt/test-utils": "3.12.1",
"@types/node": "20.12.7",
"@vitest/coverage-v8": "1.4.0",
"bumpp": "9.4.0",
"eslint": "9.0.0",
"expect-type": "0.19.0",
"husky": "9.0.11",
"lint-staged": "15.2.2",
"nuxt": "3.9.1",
"playwright": "1.43.1",
"typescript": "5.4.5",
"vitest": "1.4.0",
"vue": "3.4.24",
"vue-tsc": "2.0.14"
},
"resolutions": {
"@nuxt/kit": "3.9.1",
"@nuxt/schema": "3.9.1",
"@nuxtjs/ionic": "link:.",
"consola": "^3.2.3"
},
"packageManager": "pnpm@9.0.6"
}