-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.35 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.35 KB
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
{
"name": "opengradient-sdk",
"version": "1.0.2",
"description": "Official TypeScript SDK for interacting with OpenGradient network",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"prepare": "npm run build",
"test": "jest",
"watch": "tsc -w",
"lint": "eslint src/**/*.ts",
"format": "prettier --write \"src/**/*.ts\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/OpenGradient/ts-sdk.git"
},
"keywords": [
"opengradient",
"sdk",
"typescript",
"web3",
"blockchain",
"ethereum"
],
"author": "OpenGradient",
"license": "MIT",
"bugs": {
"url": "https://github.com/OpenGradient/ts-sdk/issues"
},
"homepage": "https://github.com/OpenGradient/ts-sdk#readme",
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^22.13.1",
"@typescript-eslint/eslint-plugin": "^8.23.0",
"@typescript-eslint/parser": "^8.23.0",
"eslint": "^9.19.0",
"jest": "^29.7.0",
"prettier": "^3.4.2",
"ts-jest": "^29.2.5",
"typescript": "^5.7.3"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node"
},
"dependencies": {
"@types/web3": "^1.2.2",
"dotenv": "^16.4.7",
"web3": "^1.10.3",
"web3-core": "^1.10.3",
"web3-eth-contract": "^1.10.3"
}
}