-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.25 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
{
"name": "lotus-client-sdk",
"version": "0.0.1",
"description": "Lotus web client SDK",
"main": "dist/index.js",
"module": "dist/index.mjs",
"browser": "dist/index.umd.js",
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"update-types": "ts-node-esm src/bump.ts",
"lint": "eslint src",
"prettier": "prettier src --write",
"test": "jest"
},
"type": "module",
"author": "",
"license": "MIT",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"dependencies": {
"@jest/globals": "^29.4.3",
"@rollup/plugin-typescript": "^11.0.0",
"@types/node": "^18.11.18",
"@types/uuid": "^8.3.4",
"axios": "^1.3.3",
"axios-retry": "^3.4.0",
"date-fns": "^2.29.3",
"dotenv": "^16.0.3",
"ms": "^2.1.3",
"npm-bump": "^0.0.33",
"openapi-typescript": "^6.0.3",
"ps": "^1.0.0",
"rollup": "^3.15.0",
"supertest": "^6.3.3",
"uuid": "^9.0.0"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/jest": "^29.2.4",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.4.3",
"msw": "^1.0.1",
"standard-version": "^9.5.0",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
},
"files": [
"dist"
]
}