-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.63 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.63 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
67
68
69
{
"name": "@ensemble-ai/cli",
"version": "0.1.1",
"description": "Command-line interface for Ensemble agent management",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"ensemble": "dist/bin/ensemble.js"
},
"files": [
"dist",
"bin"
],
"repository": {
"type": "git",
"url": "https://github.com/ensemble-codes/ensemble-framework.git",
"directory": "packages/cli"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"license": "MIT",
"homepage": "https://github.com/ensemble-codes/ensemble-framework/tree/main/packages/cli",
"bugs": {
"url": "https://github.com/ensemble-codes/ensemble-framework/issues"
},
"scripts": {
"clean": "rm -rf dist",
"build": "tsc",
"watch": "tsc --watch",
"test": "jest --verbose",
"typecheck": "tsc --noEmit",
"dev": "tsx src/bin/ensemble.ts",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@ensemble-ai/sdk": "workspace:*",
"commander": "^12.0.0",
"yaml": "^2.4.0",
"chalk": "^5.3.0",
"inquirer": "^10.0.0",
"ora": "^8.0.0",
"table": "^6.8.0",
"dotenv": "^16.4.7",
"ethers": "^6.9.0",
"bip39": "^3.1.0",
"crypto-js": "^4.2.0",
"pinata-web3": "^0.5.4"
},
"devDependencies": {
"@types/inquirer": "^9.0.7",
"@types/jest": "^29.5.14",
"@types/node": "^20.10.0",
"@types/crypto-js": "^4.2.0",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"tsx": "^4.7.0",
"typescript": "^5.3.2"
},
"keywords": [
"ensemble",
"cli",
"agent",
"blockchain",
"web3"
],
"author": "Ensemble AI"
}