forked from microsoft/TypeChat
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.07 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.07 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
{
"name": "typechat",
"author": "Microsoft",
"version": "0.1.0",
"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"
},
"exports": {
".": "./dist/index.js",
"./ts": "./dist/ts/index.js",
"./zod": "./dist/zod/index.js"
},
"engines": {
"node": ">=18"
},
"files": [
"dist",
"LICENSE",
"README.md",
"SECURITY.md"
],
"dependencies": {
"typescript": "^5.3.3",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/node": "^20.10.4"
},
"workspaces": [
"./",
"./examples/*"
]
}