-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
65 lines (65 loc) · 1.78 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "@covalenthq/ai-agent-sdk",
"version": "0.1.1",
"description": "Covalent Agent SDK. Build cool AI agents for the blockchain",
"main": "dist",
"types": "./dist/index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"clean": "rm -rf dist",
"prepublishOnly": "npm run clean && npm run build",
"lint": "eslint .",
"pretty": "prettier . --write"
},
"author": {
"name": "covalenthq",
"url": "https://covalenthq.com"
},
"license": "MIT",
"dependencies": {
"@covalenthq/client-sdk": "^2.2.1",
"zod": "^3.23.8"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^5.2.0",
"@types/node": "^22.10.1",
"@typescript-eslint/eslint-plugin": "^8.18.0",
"@typescript-eslint/parser": "^8.18.0",
"eslint": "^9.16.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"prettier-plugin-tailwindcss": "^0.6.9",
"typescript": "^5.7.2"
},
"publishConfig": {
"access": "public"
},
"files": [
"/dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/covalenthq/ai-agent-sdk.git"
},
"bugs": {
"url": "https://github.com/covalenthq/ai-agent-sdk/issues"
},
"homepage": "https://github.com/covalenthq/ai-agent-sdk#readme",
"keywords": [
"frontend",
"blockchain",
"cryptocurrency",
"web3",
"ai",
"ai-agent",
"blockchain-data"
],
"exports": {
".": {
"import": "./dist/index.js",
"default": "./dist/index.js",
"types": "./dist/index.d.ts"
}
}
}