-
Notifications
You must be signed in to change notification settings - Fork 412
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.64 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.64 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
{
"name": "typechat",
"author": "Microsoft",
"version": "0.1.2",
"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": "git+https://github.com/microsoft/TypeChat.git"
},
"bugs": {
"url": "https://github.com/microsoft/TypeChat/issues"
},
"scripts": {
"build": "tsc -p src",
"test": "npm run build && node --test tests/*.mjs",
"build-all": "npm run build --workspaces",
"prepare": "npm run build-all",
"prepublishOnly": "node -e \"require('fs').copyFileSync('../SECURITY.md','SECURITY.md')\"",
"postpublish": "node -e \"require('fs').unlinkSync('SECURITY.md')\"",
"publish-package": "npm publish",
"publish-package:dry-run": "npm publish --dry-run"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": "./dist/index.js",
"./ts": "./dist/ts/index.js",
"./zod": "./dist/zod/index.js",
"./interactive": "./dist/interactive/index.js"
},
"engines": {
"node": ">=18"
},
"files": [
"dist",
"LICENSE",
"README.md",
"SECURITY.md"
],
"dependencies": {},
"peerDependencies": {
"typescript": "^5.3.3",
"zod": "^3.22.4"
},
"peerDependenciesMeta": {
"typescript": {
"optional": true
},
"zod": {
"optional": true
}
},
"devDependencies": {
"@types/node": "^20.10.4"
},
"workspaces": [
"./",
"./examples/*"
]
}