-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
75 lines (75 loc) · 1.88 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
{
"name": "@gateway-dao/sdk",
"version": "0.0.0-semantic-release",
"description": "A Typescript SDK for the Gateway API",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"dev": "ts-node-dev src/testing.ts",
"generate": "./scripts/generate-yml.sh",
"generate-types": "ts-node-dev ./scripts/generate-types.ts",
"test": "jest --coverage",
"build": "rm -rf dist && tsc",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write ."
},
"engines": {
"node": ">=18.0.0"
},
"lint-staged": {
"*.ts": [
"pnpm format",
"pnpm lint"
]
},
"files": [
"dist"
],
"keywords": [
"sdk",
"sdk-typescript",
"web3"
],
"license": "MIT",
"dependencies": {
"@mysten/sui": "^1.12.0",
"@solana/web3.js": "^1.95.3",
"ethers": "^5.7.2",
"jsonwebtoken": "^9.0.2",
"mime-types": "^2.1.35",
"openapi-fetch": "^0.10.2",
"openapi-typescript-helpers": "^0.0.11",
"tweetnacl": "^1.0.3",
"tweetnacl-util": "^0.15.1"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/jsonwebtoken": "^9.0.6",
"@types/mime-types": "^2.1.4",
"@types/node": "^22.0.0",
"@typescript-eslint/eslint-plugin": "^6.13.2",
"eslint": "^8.55.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard-with-typescript": "^39.1.1",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-n": "^16.3.1",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-promise": "^6.1.1",
"husky": "^8.0.3",
"jest": "^29.7.0",
"openapi-typescript": "^7.1.0",
"prettier": "^3.3.3",
"swagger-cli": "^4.0.4",
"ts-jest": "^29.1.1",
"ts-node-dev": "^2.0.0",
"typescript": "^5.5.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Gateway-DAO/gateway-js-sdk.git"
},
"publishConfig": {
"access": "public"
}
}