-
-
Notifications
You must be signed in to change notification settings - Fork 378
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.56 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.56 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
63
64
65
66
67
68
69
70
71
72
73
{
"name": "@hey-api/nuxt",
"version": "0.1.2",
"description": "🚀 Nuxt module for `@hey-api/openapi-ts` codegen.",
"homepage": "https://heyapi.dev/",
"repository": {
"type": "git",
"url": "git+https://github.com/hey-api/openapi-ts.git"
},
"bugs": {
"url": "https://github.com/hey-api/openapi-ts/issues"
},
"license": "MIT",
"author": {
"email": "lubos@heyapi.dev",
"name": "Hey API",
"url": "https://heyapi.dev"
},
"funding": "https://github.com/sponsors/hey-api",
"keywords": [
"client",
"codegen",
"fetch",
"http",
"javascript",
"nuxt",
"openapi",
"rest",
"swagger",
"typescript",
"vue"
],
"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",
"sideEffects": false,
"files": [
"dist",
"LICENSE.md",
"src"
],
"scripts": {
"build": "nuxt-module-build build",
"dev": "tsup --watch",
"prepack": "pnpm build",
"prepublishOnly": "pnpm build"
},
"dependencies": {
"@hey-api/client-nuxt": "workspace:*",
"@nuxt/kit": "3.15.4",
"defu": "6.1.4",
"mlly": "1.7.4"
},
"peerDependencies": {
"@hey-api/openapi-ts": "< 2",
"nuxt": ">= 3.0.0 < 4",
"vue": ">= 3.5.13 < 4"
},
"devDependencies": {
"@hey-api/openapi-ts": "workspace:*",
"@nuxt/module-builder": "0.8.4",
"@nuxt/schema": "3.14.1592",
"@nuxt/test-utils": "3.14.0",
"vite": "6.0.9"
}
}