forked from opentiny/tiny-robot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 1.87 KB
/
Copy pathpackage.json
File metadata and controls
84 lines (84 loc) · 1.87 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "@opentiny/tiny-robot-kit",
"version": "0.5.0",
"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",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./core": {
"types": "./dist/core.d.ts",
"import": "./dist/core.mjs",
"require": "./dist/core.js"
},
"./node": {
"types": "./dist/node.d.ts",
"import": "./dist/node.mjs",
"require": "./dist/node.js"
}
},
"files": [
"dist"
],
"sideEffects": false,
"scripts": {
"build": "tsup src/index.ts src/core.ts src/node.ts --format cjs,esm --dts --minify",
"dev": "tsup src/index.ts src/core.ts src/node.ts --format cjs,esm --dts --watch",
"lint": "eslint src",
"pretest": "node scripts/download-skill-fixtures.mjs",
"test": "vitest run",
"test:watch": "vitest"
},
"author": "",
"license": "MIT",
"devDependencies": {
"@types/node": "^22.13.17",
"fake-indexeddb": "^6.2.5",
"openai": "^6.34.0",
"tsup": "^8.0.1",
"typescript": "^5.8.2",
"vite": "^6.4.3",
"vitest": "^4.1.4"
},
"peerDependencies": {
"vue": ">=3.0.0"
},
"dependencies": {
"idb": "^8.0.3",
"yaml": "^2.8.3"
}
}