-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
49 lines (49 loc) · 1.12 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
{
"name": "lotus-typescript",
"version": "1.2.7",
"description": "Typescript sdk for Lotus APIs",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"test": "jest",
"update-types": "node codegen.mjs",
"lint": "tsc"
},
"dependencies": {
"@types/node": "^18.11.18",
"@types/uuid": "^8.3.4",
"axios": "^1.3.3",
"axios-retry": "^3.4.0",
"chalk": "^5.2.0",
"date-fns": "^2.29.3",
"dotenv": "^16.0.3",
"execa": "^7.0.0",
"inquirer": "^9.1.4",
"json-schema-to-zod": "^0.6.3",
"lodash": "^4.17.21",
"ms": "^2.1.3",
"npm-bump": "^0.0.33",
"openapi-typescript": "^6.0.3",
"ps": "^1.0.0",
"supertest": "^6.3.3",
"uuid": "^9.0.0",
"zod": "^3.21.4"
},
"devDependencies": {
"@types/inquirer": "^9.0.3",
"@types/jest": "^29.2.4",
"@types/lodash": "^4.14.191",
"@types/ms": "^0.7.31",
"jest": "^29.3.1",
"standard-version": "^9.5.0",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
}
}