-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 888 Bytes
/
package.json
File metadata and controls
46 lines (46 loc) · 888 Bytes
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
{
"name": "vue-use-typechat",
"version": "0.3.0",
"description": "A lightweight Vue.js composable for type-safe AI integrations using Microsoft's TypeChat.",
"main": "src/index.ts",
"types": "src/index.ts",
"scripts": {},
"keywords": [
"vue",
"vue3",
"vue.js",
"vue.js 3",
"composable",
"typechat",
"ai",
"typescript",
"llm",
"openai",
"microsoft",
"vue-use",
"vueuse"
],
"repository": {
"type": "git",
"url": "https://github.com/ehs5/vue-use-typechat"
},
"bugs": {
"url": "https://github.com/ehs5/vue-use-typechat/issues"
},
"author": "Espen Steen",
"license": "MIT",
"peerDependencies": {
"typechat": "^0.1.1",
"vue": "^3.0.0"
},
"exports": {
".": {
"import": "./src/index.ts",
"types": "./src/index.ts"
}
},
"type": "module",
"files": [
"src"
]
}