-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
101 lines (101 loc) · 2.72 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
{
"name": "@vexip-ui/nuxt",
"version": "1.3.1",
"type": "module",
"license": "MIT",
"author": "qmhc",
"description": "Nuxt module for Vexip UI",
"packageManager": "[email protected]",
"scripts": {
"build": "nuxt-module-build",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s --commit-path .",
"dev": "nuxi dev playground",
"dev:build": "nuxi build playground",
"dev:prepare": "nuxt-module-build --stub && nuxi prepare playground",
"lint": "eslint src/** playground/** test/** scripts/**",
"postpublish": "pinst --enable",
"precommit": "lint-staged -c ./.husky/.lintstagedrc -q",
"preinstall": "npx only-allow pnpm",
"prepare": "is-ci || husky install",
"prepublishOnly": "pinst --disable",
"publish:ci": "tsx scripts/publish.ts",
"release": "tsx scripts/release.ts",
"test": "vitest run",
"test:watch": "vitest watch"
},
"main": "dist/module.cjs",
"module": "dist/module.mjs",
"types": "dist/types.d.ts",
"exports": {
".": {
"import": "./dist/module.mjs",
"require": "./dist/module.cjs",
"types": "./dist/types.d.ts"
}
},
"files": [
"dist"
],
"keywords": [
"nuxt",
"vexip-ui",
"components",
"vue",
"vexip",
"module",
"plugin",
"vite"
],
"homepage": "https://github.com/vexip-ui/nuxt#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/vexip-ui/nuxt.git"
},
"bugs": {
"url": "https://github.com/vexip-ui/nuxt/issues"
},
"dependencies": {
"@nuxt/kit": "^3.9.3",
"@rollup/pluginutils": "^5.1.0",
"@vexip-ui/utils": "^2.13.0",
"compare-versions": "6.1.0",
"local-pkg": "^0.5.0",
"magic-string": "^0.30.5",
"unplugin": "^1.6.0"
},
"devDependencies": {
"@commitlint/cli": "^18.6.0",
"@nuxt/module-builder": "^0.5.5",
"@nuxt/schema": "^3.9.3",
"@nuxt/test-utils": "^3.11.0",
"@types/minimist": "^1.2.5",
"@types/node": "^20.11.10",
"@vexip-ui/commitlint-config": "^0.4.0",
"@vexip-ui/eslint-config": "^0.12.0",
"@vexip-ui/icons": "^1.2.1",
"@vexip-ui/scripts": "^1.1.3",
"conventional-changelog-angular": "^7.0.0",
"conventional-changelog-cli": "^4.1.0",
"eslint": "^8.56.0",
"husky": "^9.0.7",
"is-ci": "^3.0.1",
"lint-staged": "^15.2.0",
"minimist": "^1.2.8",
"nuxt": "^3.9.3",
"pinst": "^3.0.0",
"prettier": "^3.2.4",
"tsx": "^4.7.0",
"typescript": "5.2.2",
"vexip-ui": "^2.3.1",
"vitest": "0.34.6"
},
"peerDependencies": {
"@vexip-ui/icons": ">=1.0.0",
"vexip-ui": ">=2.1.0"
},
"pnpm": {
"patchedDependencies": {
"[email protected]": "patches/[email protected]"
}
}
}