-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
47 lines (47 loc) · 1.17 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
{
"name": "@crypto.com/ai-agent-client",
"version": "1.0.0-beta",
"private": false,
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/crypto-com/cdc-ai-agent-client.git"
},
"scripts": {
"build": "tsc",
"test": "jest",
"lint": "eslint . --ext .ts",
"prepare": "npm run build",
"publish": "npm publish --access public"
},
"author": "[email protected]",
"license": "MIT",
"description": "A typescript client to interact with the crypto.com AI agent service",
"keywords": [
"AI",
"LLM",
"API",
"nodejs"
],
"bugs": {
"url": "https://github.com/crypto-com/cdc-ai-agent-client/issues"
},
"homepage": "https://github.com/crypto-com/cdc-ai-agent-client#readme",
"devDependencies": {
"@babel/preset-typescript": "^7.24.1",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.6",
"prettier": "2.5.1",
"ts-jest": "^29.1.2",
"typescript": "^4.9.5"
},
"peerDependencies": {
"tslib": "^2.6.2"
}
}