-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 2.4 KB
/
package.json
File metadata and controls
100 lines (100 loc) · 2.4 KB
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "connectonion",
"version": "0.1.0",
"description": "Connect to Python AI agents from TypeScript apps - Use powerful Python agents in your React, Next.js, Node.js, and Electron applications",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./react": {
"types": "./dist/react/index.d.ts",
"default": "./dist/react/index.js"
},
"./dist/address-browser": {
"types": "./dist/address-browser.d.ts",
"default": "./dist/address-browser.js"
}
},
"scripts": {
"build": "tsc",
"build:examples": "tsc -p tsconfig.examples.json",
"watch": "tsc -w",
"test": "jest",
"test:watch": "jest --watch",
"test:examples": "npm run build:examples && node dist/examples/examples/test-tools.js",
"lint": "eslint src --ext .ts",
"format": "prettier --write \"src/**/*.ts\"",
"prepublishOnly": "npm run build"
},
"keywords": [
"ai",
"agent",
"connect",
"python",
"typescript",
"remote",
"llm",
"react",
"nextjs",
"electron"
],
"author": "ConnectOnion Team",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/openonion/connectonion-ts"
},
"bugs": {
"url": "https://github.com/openonion/connectonion-ts/issues"
},
"homepage": "https://github.com/openonion/connectonion-ts#readme",
"browser": {
"fs": false,
"path": false,
"ws": false
},
"dependencies": {
"@anthropic-ai/sdk": "^0.67.0",
"@google/generative-ai": "^0.24.1",
"dotenv": "^16.0.0",
"openai": "^4.0.0",
"tweetnacl": "^1.0.3",
"ws": "^8.18.0",
"zustand": "^5.0.0"
},
"peerDependencies": {
"react": ">=17.0.0"
},
"peerDependenciesMeta": {
"react": {
"optional": true
}
},
"devDependencies": {
"@testing-library/react": "^16.3.1",
"@types/jest": "^29.0.0",
"@types/node": "^20.0.0",
"@types/react": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.0.0",
"jest": "^29.0.0",
"jest-environment-jsdom": "^30.2.0",
"prettier": "^3.0.0",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"ts-jest": "^29.0.0",
"typescript": "^5.0.0"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=16.0.0"
}
}