-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.92 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
66
67
68
69
70
71
{
"name": "@getalby/agent-toolkit",
"version": "0.1.0",
"description": "Supercharge your AI agents with the power of the Lightning Network!",
"type": "module",
"homepage": "https://github.com/getAlby/lightning-agent-toolkit",
"files": [
"ai-sdk/**/*",
"langchain/**/*"
],
"exports": {
"./langchain": {
"types": "./langchain/index.d.ts",
"require": "./langchain/index.js",
"import": "./langchain/index.mjs"
},
"./ai-sdk": {
"types": "./ai-sdk/index.d.ts",
"require": "./ai-sdk/index.js",
"import": "./ai-sdk/index.mjs"
}
},
"scripts": {
"build": "tsup",
"clean": "rm -rf langchain ai-sdk",
"lint": "eslint \"./**/*.ts*\"",
"prettier": "prettier './**/*.{js,ts,md,html,css}' --write",
"prettier-check": "prettier './**/*.{js,ts,md,html,css}' --check",
"test": "jest"
},
"dependencies": {
"@getalby/sdk": "^3.8.0",
"@langchain/core": "^0.3.6",
"ai": "^3.4.7",
"stripe": "^17.0.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@ai-sdk/openai": "^0.0.63",
"@eslint/compat": "^1.1.1",
"@langchain/core": "^0.3.6",
"@langchain/openai": "^0.3.5",
"@types/jest": "^29.5.13",
"@types/node": "^22.7.4",
"@typescript-eslint/eslint-plugin": "^8.8.0",
"dotenv": "^16.4.5",
"eslint": "^9.11.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-jest": "^28.8.3",
"eslint-plugin-prettier": "^5.2.1",
"globals": "^15.10.0",
"jest": "^29.7.0",
"langchain": "^0.3.2",
"prettier": "^3.3.3",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"tsup": "^8.3.0",
"typescript": "^5.6.2",
"websocket-polyfill": "^0.0.3"
},
"engines": {
"node": ">=18"
},
"author": "Alby Contributors <hello@getalby.com> (https://getalby.com/)",
"license": "MIT",
"funding": {
"type": "lightning",
"url": "lightning:hello@getalby.com"
}
}