-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.75 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
{
"name": "cardano-agent-kit",
"version": "1.1.7",
"description": "A TypeScript SDK for interacting with Cardano blockchain agents",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"prepublishOnly": "npm run build",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:langchain": "cd examples/cardano-langchain-chat && npm i && npm run dev",
"test:vercel-ai": "cd examples/vercel-ai-demo && npm i && npm run dev",
"update:vercel-ai": "cd examples/vercel-ai-demo && npm i && npm i cardano-agent-kit && npm run dev",
"update:langchain": "cd examples/cardano-langchain-chat && npm i && npm i cardano-agent-kit && npm run dev",
"update:toolkit": "cd examples/cardano-toolkit && npm i && npm i cardano-agent-kit && npm start",
"test:toolkit": "cd examples/cardano-toolkit && npm i && npm start",
"patch": "npm version patch && npm publish",
"minor": "npm version minor && npm publish",
"major": "npm version major && npm publish"
},
"keywords": [
"cardano",
"ai",
"agent",
"blockchain",
"sdk"
],
"repository": {
"type": "git",
"url": "https://github.com/thanhngoc541/cardano-agent-kit.git"
},
"author": "Your Name",
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^22.13.1",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"typescript": "^5.7.3"
},
"dependencies": {
"@blockfrost/blockfrost-js": "^5.7.0",
"@langchain/core": "^0.3.40",
"@meshsdk/core": "^1.9.0-beta.1",
"ai": "^4.1.36"
}
}