forked from microsoft/TypeChat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.02 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": "typechat",
"author": "Microsoft",
"version": "0.0.10",
"license": "MIT",
"description": "TypeChat is an experimental library that makes it easy to build natural language interfaces using types.",
"keywords": [
"schema",
"LLM",
"prompt",
"TypeScript",
"validation"
],
"homepage": "https://github.com/microsoft/TypeChat#readme",
"repository": {
"type": "git",
"url": "https://github.com/microsoft/TypeChat.git"
},
"bugs": {
"url": "https://github.com/microsoft/TypeChat/issues"
},
"scripts": {
"build": "tsc -p src",
"build-all": "npm run build --workspaces",
"prepare": "npm run build-all"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"engines": {
"node": ">=18"
},
"files": [
"dist",
"LICENSE",
"README.md",
"SECURITY.md"
],
"dependencies": {
"axios": "^1.4.0",
"typescript": "^5.1.3"
},
"devDependencies": {
"@types/node": "^20.3.3"
},
"workspaces": [
"./",
"./examples/*"
]
}