-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
51 lines (51 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
48
49
50
51
{
"name": "ai-connectify",
"version": "2.2.0",
"description": "A simple library for connecting to and interacting with various AI services at the same time",
"keywords": [
"ai",
"connectify",
"artificial",
"intelligence",
"machine",
"learning",
"openai",
"chatgpt",
"cohere",
"dalle",
"stability",
"tensorflow"
],
"license": "MIT",
"author": "Brian Elizondo <[email protected]> (https://github.com/brianelizondo)",
"main": "index.js",
"types": "dist/index.d.ts",
"files": [
"lib/**/*",
"dist/**/*"
],
"homepage": "https://github.com/brianelizondo/ai-connectify#readme",
"bugs": {
"url": "https://github.com/brianelizondo/ai-connectify/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/brianelizondo/ai-connectify.git"
},
"scripts": {
"test": "jest"
},
"dependencies": {
"@tensorflow/tfjs-node": "^4.21.0",
"axios": "^1.7.7",
"form-data": "^4.0.0"
},
"devDependencies": {
"@babel/core": "^7.21.5",
"@babel/preset-env": "^7.21.5",
"babel-jest": "^29.5.0",
"dotenv": "^16.4.5",
"jest": "^27.4.3",
"typescript": "^5.6.2"
}
}