-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
129 lines (129 loc) · 3.4 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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "apiful",
"type": "module",
"version": "0.11.0",
"packageManager": "pnpm@9.12.2",
"description": "Extensible, typed API tooling",
"author": "Johann Schopplich <hello@johannschopplich.com>",
"license": "MIT",
"homepage": "https://github.com/johannschopplich/apiful#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/johannschopplich/apiful.git"
},
"bugs": {
"url": "https://github.com/johannschopplich/apiful/issues"
},
"keywords": [
"api",
"client",
"http-status-codes",
"nitro",
"ofetch",
"routes",
"worker"
],
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.mts",
"import": "./dist/index.mjs"
},
"./config": {
"types": "./dist/config.d.mts",
"import": "./dist/config.mjs"
},
"./extensions": {
"types": "./dist/extensions/index.d.mts",
"import": "./dist/extensions/index.mjs"
},
"./openapi": {
"types": "./dist/openapi/index.d.mts",
"import": "./dist/openapi/index.mjs"
},
"./schema": {
"types": "./schema.d.mts",
"import": "./schema.mjs"
},
"./http-status-codes": {
"types": "./dist/generated/http-status-codes.d.mts",
"import": "./dist/generated/http-status-codes.mjs"
},
"./http-status-phrases": {
"types": "./dist/generated/http-status-phrases.d.mts",
"import": "./dist/generated/http-status-phrases.mjs"
},
"./utils": {
"types": "./dist/utils/index.d.mts",
"import": "./dist/utils/index.mjs"
}
},
"types": "./dist/index.d.ts",
"bin": {
"apiful": "./bin/apiful.mjs"
},
"files": [
"bin",
"dist",
"schema.*"
],
"scripts": {
"build": "unbuild",
"dev": "tsx playground/clients.ts",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "vitest",
"test:types": "tsc --noEmit",
"release": "bumpp",
"prepack": "pnpm run build",
"prepare": "tsx src/cli generate --root=\"playground\""
},
"dependencies": {
"@types/json-schema": "^7.0.15",
"c12": "^2.0.1",
"citty": "^0.1.6",
"consola": "^3.2.3",
"defu": "^6.1.4",
"ofetch": "^1.4.1",
"openapi-typescript-helpers": "0.0.13",
"scule": "^1.3.0",
"ufo": "^1.5.4"
},
"optionalDependencies": {
"json-schema-to-typescript-lite": "^14",
"openapi-typescript": "^7"
},
"devDependencies": {
"@antfu/eslint-config": "^3.8.0",
"@iconify-json/carbon": "^1.2.3",
"@iconify-json/devicon-plain": "^1.2.4",
"@types/node": "^20.16.14",
"bumpp": "^9.7.1",
"eslint": "^9.13.0",
"get-port-please": "^3.1.2",
"h3": "^1.13.0",
"json-schema-to-typescript-lite": "^14.1.0",
"listhen": "^1.9.0",
"openapi-typescript": "^7.4.1",
"tinyexec": "^0.3.1",
"ts-morph": "^24.0.0",
"tsx": "^4.19.1",
"typescript": "^5.6.3",
"unbuild": "^3.0.0-rc.11",
"unocss": "^0.63.6",
"vitepress": "^1.4.1",
"vitest": "^2.1.3"
},
"pnpm": {
"overrides": {
"function-bind": "npm:@socketregistry/function-bind@^1",
"hasown": "npm:@socketregistry/hasown@^1",
"indent-string": "npm:@socketregistry/indent-string@^1",
"is-core-module": "npm:@socketregistry/is-core-module@^1",
"path-parse": "npm:@socketregistry/path-parse@^1"
}
}
}