-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
70 lines (70 loc) · 1.59 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
{
"name": "@nahkies/typescript-fetch-runtime",
"version": "0.18.0",
"description": "Runtime package for code generated by @nahkies/openapi-code-generator using the typescript-fetch template",
"license": "MIT",
"author": {
"name": "Michael Nahkies",
"email": "[email protected]"
},
"homepage": "https://openapi-code-generator.nahkies.co.nz/",
"repository": {
"type": "git",
"url": "https://github.com/mnahkies/openapi-code-generator.git",
"directory": "packages/typescript-fetch-runtime"
},
"bugs": {
"url": "https://github.com/mnahkies/openapi-code-generator/issues"
},
"exports": {
"./main": {
"require": "./dist/main.js",
"import": "./dist/main.js",
"types": "./dist/main.d.ts"
},
"./joi": {
"require": "./dist/joi.js",
"import": "./dist/joi.js",
"types": "./dist/joi.d.ts"
},
"./zod": {
"require": "./dist/zod.js",
"import": "./dist/zod.js",
"types": "./dist/zod.d.ts"
}
},
"scripts": {
"clean": "rm -rf ./dist",
"build": "tsc -p ./tsconfig.json",
"test": "jest"
},
"dependencies": {
"qs": "^6.13.1"
},
"peerDependencies": {
"zod": "^3.20.6"
},
"devDependencies": {
"@types/qs": "^6.9.17",
"jest": "^30.0.0-alpha.6",
"typescript": "~5.7.2",
"zod": "^3.24.1"
},
"files": [
"src",
"dist",
"README.md",
"CHANGELOG.md",
"package.json",
"tsconfig.json"
],
"keywords": [
"@nahkies/openapi-code-generator",
"runtime",
"typescript-fetch",
"fetch"
],
"publishConfig": {
"access": "public"
}
}