-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 1.74 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
{
"name": "@aurora-is-near/openapi-client",
"description": "A type-safe OpenAPI client generator.",
"version": "1.1.3",
"author": "Alex Mendes",
"license": "UNLICENSED",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"lint": "eslint --ext .js,.ts .",
"test": "jest",
"typecheck": "tsc --noEmit",
"oac": "./bin/index.js"
},
"sideEffects": false,
"engines": {
"node": ">=20.8.1"
},
"bin": {
"oac": "./bin/index.js"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"files": [
"src",
"bin",
"index.js",
"index.d.ts",
"mock.ts"
],
"dependencies": {
"@types/qs": "^6.9.7",
"app-root-path": "^3.1.0",
"axios": "^1.5.1",
"chalk": "^4.1.2",
"change-case": "^4.1.2",
"exponential-backoff": "^3.1.1",
"fast-glob": "^3.2.11",
"fs-extra": "^11.1.0",
"handlebars": "^4.7.7",
"jwt-decode": "^3.1.2",
"openapi-types": "^11.0.0",
"openapi-typescript": "^6.7.4",
"pascal-case": "^3.1.2",
"qs": "^6.10.3",
"typeconv": "^1.7.0",
"yargs": "^17.7.2"
},
"peerDependencies": {
"typescript": "*"
},
"devDependencies": {
"@aurora-is-near/eslint-config": "^1.3.8",
"@aurora-is-near/semantic-release-config": "^1.2.1",
"@commitlint/config-conventional": "^8.3.4",
"@types/jest": "^29.0.0",
"@types/jsonwebtoken": "^8.5.8",
"commitlint": "^8.3.5",
"eslint": "^8.57.0",
"husky": "^4.2.5",
"jest": "^29.7.0",
"jsonwebtoken": "^8.5.1",
"prettier": "^3.2.5",
"semantic-release": "^24.0.0",
"ts-jest": "^29.1.0",
"typescript": "^5.1.0"
},
"resolutions": {
"strip-ansi": "^6.0.1",
"string-width": "^4.2.0",
"wrap-ansi": "^7.0.0"
}
}