-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
54 lines (54 loc) · 1.37 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
{
"name": "cdp-agentkit-monorepo",
"private": true,
"workspaces": [
"cdp-agentkit-core",
"cdp-langchain",
"twitter-langchain"
],
"packageManager": "[email protected]",
"scripts": {
"build": "turbo run build",
"test": "turbo run test",
"lint": "turbo run lint",
"clean": "turbo run clean",
"docs": "turbo run docs",
"dev": "turbo run dev",
"format": "prettier -c .prettierrc --write \"**/*.{ts,js,cjs,json,md}\"",
"format:check": "prettier -c .prettierrc --check \"**/*.{ts,js,cjs,json,md}\"",
"lint:fix": "turbo run lint:fix",
"test:types": "turbo run test:types"
},
"author": "Coinbase Inc.",
"license": "Apache-2.0",
"repository": "https://github.com/coinbase/cdp-agentkit-nodejs",
"keywords": [
"coinbase",
"sdk",
"crypto",
"cdp",
"agentkit",
"ai",
"agent",
"nodejs",
"typescript",
"monorepo",
"langchain"
],
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^20.12.11",
"@typescript-eslint/eslint-plugin": "^7.8.0",
"@typescript-eslint/parser": "^7.8.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jsdoc": "^48.2.5",
"eslint-plugin-prettier": "^5.1.3",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"ts-jest": "^29.2.5",
"turbo": "^2.3.3",
"typedoc": "^0.27.2",
"typescript": "^5.4.5"
}
}