-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
104 lines (104 loc) · 2.2 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
103
104
{
"name": "nuxt-component-meta",
"version": "0.9.0",
"license": "MIT",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/nuxtlabs/nuxt-component-meta.git"
},
"bin": {
"nuxt-component-meta": "bin/nuxt-component-meta.mjs"
},
"exports": {
".": {
"import": "./dist/module.mjs",
"require": "./dist/module.cjs"
}
},
"main": "./dist/module.cjs",
"types": "./dist/types.d.ts",
"files": [
"dist"
],
"keywords": [
"vue",
"nuxt",
"vue component",
"nuxt component"
],
"scripts": {
"prepack": "nuxt-module-build build",
"dev": "nuxi dev playground",
"dev:build": "nuxi build playground",
"dev:generate": "nuxi generate playground",
"dev:prepare": "nuxt-module-build --stub && nuxi prepare playground",
"lint": "eslint ",
"test": "vitest",
"release": "pnpm test && release-it"
},
"dependencies": {
"@nuxt/kit": "^3.13.2",
"citty": "^0.1.6",
"mlly": "^1.7.2",
"scule": "^1.3.0",
"typescript": "^5.6.3",
"ufo": "^1.5.4",
"vue-component-meta": "^2.1.8"
},
"devDependencies": {
"@iconify/vue": "^4.1.2",
"@nuxt/content": "^2.13.4",
"@nuxt/eslint-config": "^0.6.1",
"@nuxt/module-builder": "^0.8.4",
"@nuxt/test-utils": "^3.14.4",
"@nuxtjs/eslint-config-typescript": "^12.1.0",
"changelogen": "^0.5.7",
"eslint": "^9.13.0",
"jiti": "^2.3.3",
"nuxt": "^3.13.2",
"release-it": "^17.10.0",
"vitest": "^2.1.4",
"vue": "^3.5.12"
},
"build": {
"entries": [
{
"input": "./src/parser.ts",
"name": "parser"
},
{
"input": "./src/cli/index.ts",
"name": "cli"
}
],
"externals": [
"#nuxt-component-meta",
"ufo",
"pathe",
"defu",
"unplugin",
"consola",
"acorn",
"pkg-types",
"jsonc-parser"
]
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"postcss*"
]
}
},
"packageManager": "[email protected]",
"release-it": {
"git": {
"commitMessage": "chore(release): release v${version}"
},
"github": {
"release": true,
"releaseName": "v${version}"
}
}
}