-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
81 lines (81 loc) · 2.01 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
{
"name": "@geut/openapi-box",
"type": "module",
"version": "5.0.8",
"description": "Generate TypeBox types from OpenApi IDL + End-to-end typesafe HTTP client library.",
"browser": "./dist/client.cjs",
"author": {
"name": "GEUT",
"email": "[email protected]"
},
"license": "MIT",
"homepage": "https://github.com/geut/openapi-box#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/geut/openapi-box.git"
},
"bugs": {
"url": "https://github.com/geut/openapi-box/issues"
},
"keywords": [
"create",
"geut",
"module"
],
"exports": {
".": {
"import": "./dist/client.js",
"require": "./dist/client.cjs"
},
"./writer": {
"import": "./dist/writer.js",
"require": "./dist/writer.cjs"
},
"./package.json": "./package.json"
},
"main": "./dist/client.cjs",
"bin": "./bin/cli.js",
"files": [
"bin",
"dist",
"src"
],
"scripts": {
"start": "node index.js",
"build": "tsup src/client.js src/writer.js --dts --format esm,cjs",
"test": "node --test --experimental-test-snapshots",
"test:update": "node --run test -- --test-update-snapshots",
"posttest": "node --run lint",
"lint": "eslint .",
"test:types": "tsc",
"prepublishOnly": "node --run test && node --run build"
},
"peerDependencies": {
"@sinclair/typebox": ">=0.32.35"
},
"dependencies": {
"@apidevtools/json-schema-ref-parser": "^11.6.4",
"code-block-writer": "^13.0.1",
"fast-querystring": "^1.1.2",
"meow": "^13.2.0",
"ora": "^8.0.1",
"pascalcase": "^2.0.0",
"prettier": "^3.3.3",
"undici": "^6.19.4"
},
"devDependencies": {
"@fastify/swagger": "^8.15.0",
"@sinclair/typebox": "^0.32.35",
"@types/node": "^20.14.12",
"eslint": "^9.7.0",
"eslint-config-standard-ext": "^2.2.1",
"expect-type": "^0.16.0",
"fastify": "^4.21.0",
"qs": "^6.11.2",
"tsup": "^8.2.3",
"typescript": "^5.5.4"
},
"publishConfig": {
"access": "public"
}
}