-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
42 lines (42 loc) · 1.09 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
{
"name": "oa-client",
"version": "0.10.0",
"description": "Harness all the power of your backend's OpenAPI spec files by generating a client object in a few lines.",
"keywords": [
"open-api",
"openapi",
"isomorphic",
"node",
"commonjs",
"browser",
"es6",
"helper",
"typescript",
"client"
],
"homepage": "https://github.com/ninofiliu/oa-client",
"license": "MIT",
"author": "Nino Filiu <nino.filiu@gmail.com> (https://ninofiliu.com)",
"repository": "github:ninofiliu/oa-client",
"main": "dist",
"types": "types/index.d.ts",
"devDependencies": {
"@babel/cli": "^7.23.4",
"@babel/core": "^7.23.6",
"@babel/preset-env": "^7.23.6",
"@babel/preset-typescript": "^7.23.3",
"@types/jest": "^29.5.11",
"@typescript-eslint/eslint-plugin": "^6.16.0",
"@typescript-eslint/parser": "^6.16.0",
"babel-jest": "^29.7.0",
"eslint": "^8.56.0",
"jest": "^29.7.0",
"openapi3-ts": "^4.2.1",
"prettier": "^3.1.1",
"typescript": "^5.3.3"
},
"dependencies": {
"ajv": "^8.12.0",
"ajv-formats": "^2.1.1"
}
}