-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.05 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
{
"name": "type_chat",
"version": "1.0.0",
"description": "typechat python version from jsii",
"main": "index.js",
"scripts": {
"build": "jsii",
"build:watch": "jsii --watch",
"package": "jsii-pacmak",
"python": "cd examples && pip install -r requirements.txt --force-reinstall && python chat.py"
},
"keywords": [],
"author": {
"name": "markqiu",
"email": "[email protected]"
},
"repository": {
"url": "https://github.com/markqiu/gpt_academic",
"type": "git"
},
"license": "ISC",
"stability": "experimental",
"types": "index.d.ts",
"jsii": {
"outdir": "dist",
"versionFormat": "short",
"targets": {
"python": {
"module": "type_chat",
"distName": "type_chat"
}
}
},
"dependencies": {
"dotenv": "^16.3.1",
"typechat": "^0.0.10"
},
"bundledDependencies": [
"dotenv",
"typechat"
],
"devDependencies": {
"@types/node": "^20.3.1",
"copyfiles": "^2.4.1",
"jsii": "^5.2.41",
"jsii-pacmak": "^1.93.0",
"typescript": "^5.1.3"
}
}