-
-
Notifications
You must be signed in to change notification settings - Fork 41
/
package.json
102 lines (102 loc) · 2.62 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
97
98
99
100
101
102
{
"name": "@nuxtjs/ionic",
"version": "0.15.1",
"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": "[email protected]",
"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",
"prepublishOnly": "pnpm lint && pnpm test",
"release": "bumpp && npm publish && git push --follow-tags",
"test": "vitest run --coverage",
"test:types": "tsc --noEmit"
},
"dependencies": {
"@capacitor/cli": "^6.1.2",
"@capacitor/core": "^6.1.2",
"@ionic/cli": "^7.2.0",
"@ionic/vue": "^8.2.6",
"@ionic/vue-router": "^8.2.6",
"@nuxt/kit": "^3.12.4",
"@unhead/vue": "^1.11.9",
"ionicons": "^7.4.0",
"pathe": "^1.1.2",
"pkg-types": "^1.1.3",
"ufo": "^1.5.4",
"unimport": "^3.10.0"
},
"devDependencies": {
"@nuxt/eslint-config": "0.7.1",
"@nuxt/module-builder": "0.8.4",
"@nuxt/schema": "3.14.1592",
"@nuxt/test-utils": "3.15.1",
"@types/node": "22.9.1",
"@vitest/coverage-v8": "2.1.8",
"@vue/test-utils": "2.4.6",
"bumpp": "9.8.1",
"eslint": "9.17.0",
"expect-type": "1.1.0",
"happy-dom": "15.11.7",
"husky": "9.1.7",
"lint-staged": "15.2.10",
"nuxt": "3.14.1592",
"playwright-core": "1.49.0",
"typescript": "5.6.3",
"unbuild": "3.0.0",
"unhead": "1.11.11",
"vitest": "2.1.8",
"vue": "3.5.13",
"vue-tsc": "2.1.10"
},
"resolutions": {
"@nuxt/content": "2.13.4",
"@nuxt/kit": "3.14.1592",
"@nuxt/schema": "3.14.1592",
"@nuxtjs/ionic": "link:.",
"consola": "^3.2.3",
"nuxt-component-meta": ">=0.7.0"
},
"packageManager": "[email protected]"
}