-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.61 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.61 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
59
60
61
62
63
64
65
66
{
"name": "@aithranetwork/sdk-aithra-toolkit",
"version": "0.0.7-alpha.8",
"description": "The Aithra Network Toolkit SDK for the agents",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"import": "./dist/index.mjs"
}
},
"files": [
"dist",
"README.md",
"package.json"
],
"scripts": {
"build": "tsup ./src",
"lint:fix": "eslint --fix",
"test": "jest --runInBand --forceExit",
"test:coverage": "jest --coverage",
"test:coverage:html": "jest --coverage --coverageReporters='text-summary' --coverageReporters='html' && open coverage/index.html"
},
"pnpm": {
"overrides": {
"onnxruntime-node": "1.20.1",
"viem": "2.21.58"
}
},
"engines": {
"node": "23.3.0"
},
"dependencies": {
"@project-serum/anchor": "0.26.0",
"@solana/spl-token": "0.4.9",
"@solana/web3.js": "1.95.8",
"axios": "1.7.9",
"bs58": "6.0.0",
"cross-fetch": "4.1.0",
"form-data": "4.0.1"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"jest": "29.7.0",
"prettier": "^3.0.0",
"rimraf": "^5.0.0",
"ts-jest": "^29.2.5",
"tsup": "^8.0.0",
"typescript": "^5.7.3"
},
"publishConfig": {
"access": "public"
},
"peerDependencies": {
"@solana/web3.js": "1.95.8"
}
}