-
-
Notifications
You must be signed in to change notification settings - Fork 49
Expand file tree
/
Copy pathpackage.json
More file actions
116 lines (116 loc) · 2.82 KB
/
package.json
File metadata and controls
116 lines (116 loc) · 2.82 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "@nuxtjs/ionic",
"version": "1.0.2",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/nuxt-modules/ionic.git"
},
"description": "Ionic integration for Nuxt",
"keywords": [
"nuxt",
"module",
"nuxt-module",
"ionic",
"ionic-framework",
"web-components",
"native",
"android",
"ios"
],
"author": {
"name": "Daniel Roe",
"email": "daniel@roe.dev",
"url": "https://github.com/danielroe"
},
"type": "module",
"exports": {
".": {
"types": "./dist/types.d.mts",
"import": "./dist/module.mjs"
}
},
"main": "./dist/module.mjs",
"typesVersions": {
"*": {
".": [
"./dist/types.d.mts"
]
}
},
"files": [
"dist"
],
"scripts": {
"build": "pnpm dev:prepare && nuxt-module-build build",
"dev": "nuxt dev playground",
"dev:build": "nuxt build playground",
"dev:prepare": "pnpm nuxt-module-build build --stub && nuxt-module-build prepare && nuxt prepare playground",
"docs:dev": "pnpm --filter 'nuxt-ionic-docs' dev",
"docs:build": "pnpm --filter 'nuxt-ionic-docs' generate",
"lint": "eslint",
"prepack": "pnpm build",
"prepare": "simple-git-hooks",
"prepublishOnly": "pnpm lint && pnpm test",
"release": "bumpp && npm publish && git push --follow-tags",
"test": "vitest run --coverage",
"test:types": "tsc --noEmit"
},
"dependencies": {
"@capacitor/cli": "^8.0.0",
"@capacitor/core": "^8.0.0",
"@ionic/cli": "^7.2.1",
"@ionic/vue": "^8.7.3",
"@ionic/vue-router": "^8.7.3",
"@nuxt/kit": "^4.1.2",
"@unhead/vue": "^2.0.14",
"ionicons": "^8.0.13",
"jiti": "^2.6.0",
"pathe": "^2.0.3",
"pkg-types": "^2.3.0",
"std-env": "^3.9.0",
"ufo": "^1.6.1",
"unimport": "^6.0.0"
},
"devDependencies": {
"@ionic/core": "8.7.18",
"@nuxt/eslint-config": "1.15.2",
"@nuxt/module-builder": "1.0.2",
"@nuxt/schema": "4.3.1",
"@nuxt/test-utils": "4.0.0",
"@types/node": "24.11.0",
"@vitest/coverage-v8": "3.2.4",
"@vue/test-utils": "2.4.6",
"bumpp": "10.4.1",
"eslint": "10.0.2",
"expect-type": "1.3.0",
"happy-dom": "20.7.0",
"husky": "9.1.7",
"lint-staged": "16.3.1",
"nuxt": "4.3.1",
"playwright-core": "1.58.2",
"simple-git-hooks": "2.13.1",
"typescript": "5.9.3",
"unbuild": "3.6.1",
"unhead": "2.1.10",
"vitest": "3.2.4",
"vue": "3.5.29",
"vue-tsc": "3.2.5"
},
"lint-staged": {
"*.{md,js,ts,mjs,cjs,json,.*rc}": [
"npx eslint --fix"
]
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"resolutions": {
"@nuxt/kit": "^4.1.2",
"@nuxt/schema": "4.3.1",
"@nuxtjs/ionic": "link:.",
"consola": "^3.4.2",
"nuxt-component-meta": ">=0.14.0"
},
"packageManager": "pnpm@10.30.3"
}