-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathpackage.json
91 lines (91 loc) · 2.36 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
{
"name": "@nuxt/module-builder",
"version": "0.8.4",
"repository": "nuxt/module-builder",
"description": "Complete solution for building Nuxt modules",
"license": "MIT",
"type": "module",
"exports": {
".": "./dist/index.mjs",
"./package.json": "./package.json"
},
"typesVersions": {
"*": {
"*": [
"./dist/*.d.mts"
],
"package.json": [
"package.json"
]
}
},
"bin": {
"nuxt-build-module": "./dist/cli.mjs",
"nuxt-module-build": "./dist/cli.mjs"
},
"files": [
"dist"
],
"scripts": {
"build": "unbuild",
"dev:prepare": "unbuild --stub && pnpm -r dev:prepare",
"example:build": "pnpm nuxt-module-build build ./example",
"lint": "eslint .",
"nuxt-module-build": "JITI_ESM_RESOLVE=1 jiti ./src/cli.ts",
"prepack": "pnpm build",
"release": "pnpm vitest run && pnpm build && changelogen --release && pnpm publish && git push --follow-tags",
"test": "pnpm vitest --coverage",
"test:attw": "attw --pack example && attw --pack .",
"test:publint": "cd example && publint",
"test:engines": "installed-check -d --no-workspaces",
"test:knip": "knip --exclude unresolved",
"test:types": "vue-tsc --noEmit && pnpm -r test:types"
},
"packageManager": "pnpm@9.15.3",
"dependencies": {
"citty": "^0.1.6",
"consola": "^3.3.3",
"defu": "^6.1.4",
"jiti": "^2.4.2",
"magic-regexp": "^0.8.0",
"mlly": "^1.7.3",
"pathe": "^2.0.1",
"pkg-types": "^1.3.0",
"tsconfck": "^3.1.4",
"unbuild": "^3.2.0"
},
"peerDependencies": {
"nuxi": "^3.20.0",
"typescript": "^5.7.3"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.17.2",
"@nuxt/eslint-config": "^0.7.5",
"@nuxt/schema": "^3.15.1",
"@types/node": "^22.10.5",
"@vitest/coverage-v8": "^2.1.8",
"changelogen": "^0.5.7",
"eslint": "^9.18.0",
"installed-check": "^9.3.0",
"knip": "^5.42.0",
"nuxi": "^3.20.0",
"nuxt": "^3.15.1",
"publint": "^0.3.1",
"tinyexec": "^0.3.2",
"typescript": "~5.7.3",
"vitest": "^2.1.8",
"vue": "^3.5.13",
"vue-tsc": "^2.2.0"
},
"resolutions": {
"@nuxt/kit": "^3.15.1",
"@nuxt/module-builder": "workspace:*",
"@nuxt/schema": "^3.15.1",
"typescript": "~5.7.3",
"vue": "^3.5.13",
"vue-tsc": "^2.2.0"
},
"engines": {
"node": "^18.0.0 || >=20.0.0"
}
}