-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.17 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.17 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
{
"name": "@opentiny/tiny-robot-kit",
"version": "0.4.1",
"homepage": "https://docs.opentiny.design/tiny-robot/",
"repository": {
"type": "git",
"url": "git+https://github.com/opentiny/tiny-robot.git"
},
"bugs": {
"url": "https://github.com/opentiny/tiny-robot/issues"
},
"publishConfig": {
"access": "public"
},
"description": "AI大模型请求与数据处理工具包",
"keywords": [
"vue",
"vue3",
"ai",
"ai-client",
"ai-sdk",
"chat",
"chatbot",
"llm",
"openai",
"assistant",
"streaming",
"composables",
"conversation",
"model-provider",
"tiny-robot",
"opentiny"
],
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"sideEffects": false,
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts --minify",
"dev": "tsup src/index.ts --format cjs,esm --dts --watch"
},
"author": "",
"license": "MIT",
"devDependencies": {
"@types/node": "^22.13.17",
"tsup": "^8.0.1",
"typescript": "^5.8.2"
},
"peerDependencies": {
"vue": ">=3.0.0"
},
"dependencies": {
"idb": "^8.0.3"
}
}