-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.41 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.41 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
{
"name": "nuxt-module-utils",
"version": "0.0.5",
"description": "A collection of utility functions for Nuxt module authors.",
"type": "module",
"license": "MIT",
"funding": "https://github.com/sponsors/bobbiegoede",
"repository": {
"type": "git",
"url": "git+https://github.com/bobbiegoede/nuxt-module-utils.git"
},
"bugs": {
"url": "https://github.com/bobbiegoede/nuxt-module-utils/issues"
},
"keywords": [
"nuxt",
"module"
],
"author": {
"name": "Bobbie Goede",
"email": "bobbiegoede@gmail.com"
},
"contributors": [
{
"name": "Bobbie Goede (@BobbieGoede)"
}
],
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": "./dist/index.js",
"./package.json": "./package.json"
},
"files": [
"dist"
],
"scripts": {
"build": "tsdown",
"release": "pnpm bumpp && pnpm publish"
},
"packageManager": "pnpm@10.11.1",
"devDependencies": {
"@types/node": "^24.0.13",
"bumpp": "^10.1.1",
"tsdown": "^0.12.7",
"typescript": "^5.8.3"
},
"peerDependencies": {
"nuxt": "^3.16.0 || ^4.0.0-rc.0",
"@nuxt/kit": "^3.16.0 || ^4.0.0-rc.0",
"@nuxt/schema": "^3.16.0 || ^4.0.0-rc.0"
},
"dependencies": {
"defu": "^6.1.4",
"exsolve": "^1.0.7",
"magic-string": "^0.30.17",
"pathe": "^2.0.3",
"pkg-types": "^2.2.0",
"unplugin": "^2.3.5"
}
}