forked from SocketDotTech/socket-v2-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.45 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
{
"name": "@socket.tech/socket-v2-sdk",
"version": "1.24.2",
"module": "lib/src/index.js",
"main": "lib/src/index.js",
"types": "lib/src/index.d.ts",
"publishConfig": {
"access": "public"
},
"directories": {
"lib": "lib",
"src": "src"
},
"files": [
"lib",
"src"
],
"repository": "[email protected]:SocketDotTech/socket-v2-sdk.git",
"author": "rugamoto <[email protected]>",
"license": "MIT",
"scripts": {
"build": "tsc",
"lint": "eslint . --ext .ts",
"test": "jest",
"generate": "npx openapi-typescript-codegen --input ./spec.json --output ./src/client --indent 2 --postfix \"\" --client axios --useOptions && prettier --write ./src/client-generated",
"generate:docs": "typedoc --excludeProtected --excludePrivate --plugin typedoc-plugin-markdown --out docs src/index.ts"
},
"devDependencies": {
"@types/jest": "^28.1.1",
"@typescript-eslint/eslint-plugin": "^5.22.0",
"@typescript-eslint/parser": "^5.22.0",
"eslint": "^8.14.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jest": "^26.1.5",
"jest": "^28.1.0",
"prettier": "^2.6.2",
"ts-jest": "^28.0.4",
"typedoc": "^0.22.17",
"typedoc-plugin-markdown": "^3.12.1",
"typescript": "^4.6.4"
},
"dependencies": {
"@socket.tech/ll-core": "^0.1.49",
"@socket.tech/ll-core-v2": "^0.0.66",
"axios": "^0.27.2",
"ethers": "^5.6.5",
"form-data": "^4.0.0",
"tslib": "^2.4.0"
}
}