-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.04 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 2.04 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
{
"name": "@ensemble-ai/sdk",
"version": "0.6.2",
"description": "TypeScript SDK for the Ensemble Framework",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/ensemble-codes/ensemble-framework.git",
"directory": "packages/sdk"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"license": "MIT",
"homepage": "https://github.com/ensemble-codes/ensemble-framework/tree/main/packages/sdk",
"bugs": {
"url": "https://github.com/ensemble-codes/ensemble-framework/issues"
},
"scripts": {
"clean": "rm -rf dist typechain",
"build": "npm run typechain && tsc",
"watch": "tsc --watch",
"test": "npm run typechain && jest --verbose",
"test:agent": "npm run typechain && jest test/agentService.test.ts",
"test:integration": "npm run typechain && npx tsx scripts/test-agent-methods.ts",
"typecheck": "npm run typechain && tsc --noEmit",
"docs": "typedoc",
"upload-docs": "aws s3 cp ./docs s3://$ENSEMBLE_S3_BUCKET_NAME --recursive",
"register-services": "ts-node ./scripts/register-services.ts",
"create-proposals": "ts-node ./scripts/create-proposals.ts",
"register-agents": "ts-node ./scripts/register-agents.ts",
"typechain": "typechain --target ethers-v6 ./src/abi/*.json --out-dir ./typechain"
},
"dependencies": {
"@jest/globals": "^29.7.0",
"chai": "^4.3.6",
"dotenv": "^16.4.7",
"ethers": "^6.9.0",
"graphql": "^16.9.0",
"graphql-request": "^7.1.2",
"jest": "^29.7.0",
"pinata-web3": "^0.5.4",
"zod": "^4.0.17"
},
"devDependencies": {
"@babel/preset-typescript": "^7.26.0",
"@graphprotocol/client-cli": "^3.0.7",
"@swc/jest": "^0.2.37",
"@typechain/ethers-v6": "^0.5.1",
"@types/chai": "^5.0.1",
"@types/jest": "^29.5.14",
"@types/node": "^20.10.0",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"typechain": "^8.3.2",
"typedoc": "^0.27.4",
"typescript": "^5.3.2"
}
}