-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 1.69 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 1.69 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
74
75
76
77
78
79
80
81
{
"name": "discofetch",
"type": "module",
"version": "0.2.2",
"description": "The fetch client that types itself.",
"author": "Frederik Bussmann",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/freb97/discofetch"
},
"workspaces": [
"examples/*",
"."
],
"keywords": [
"api",
"client",
"codegen",
"discovery",
"fetch",
"typescript",
"openapi",
"nuxt",
"vite",
"types"
],
"exports": {
"./nuxt": {
"types": "./dist/types.d.mts",
"import": "./dist/module.mjs"
},
"./client": {
"types": "./dist/client/index.d.ts"
}
},
"main": "./dist/module.mjs",
"typesVersions": {
"*": {
"./nuxt": [
"./dist/types.d.mts"
]
}
},
"files": [
"dist"
],
"scripts": {
"build": "nuxt-module-build build",
"prepare": "nuxt-module-build prepare",
"test": "vitest",
"lint": "eslint .",
"nuxt:prepare": "bun --filter=nuxt-example run prepare",
"nuxt:dev": "bun --filter=nuxt-example run dev",
"nuxt:build": "bun --filter=nuxt-example run build",
"typecheck": "vue-tsc --noEmit"
},
"peerDependencies": {
"@nuxt/kit": "^4",
"nuxt": "^4"
},
"dependencies": {
"autodisco": "^0.4.3",
"openapi-fetch": "^0.15.0",
"openapi-typescript": "^7.10.1",
"scule": "^1.3.0",
"ufo": "^1.6.1"
},
"devDependencies": {
"@antfu/eslint-config": "^6.2.0",
"@nuxt/kit": "^4.2.1",
"@nuxt/module-builder": "^1.0.2",
"@nuxt/schema": "^4.2.1",
"@types/node": "^20.19.24",
"eslint": "^9.39.1",
"nuxt": "^4.2.1",
"typescript": "^5.9.3",
"unbuild": "^3.6.1",
"vue-tsc": "^3.1.5"
}
}