forked from coze-dev/coze-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.54 KB
/
package.json
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
{
"name": "@coze/taro-api",
"version": "0.0.6",
"description": "Official Coze Taro SDK for seamless AI integration into your applications | 扣子官方 Taro SDK,助您轻松集成 AI 能力到应用中",
"keywords": [
"coze",
"ai",
"taro",
"taro-api",
"coze-taro",
"coze-api",
"sdk",
"chatbot",
"typescript"
],
"homepage": "https://github.com/coze-dev/coze-js/tree/main/packages/coze-taro",
"bugs": {
"url": "https://github.com/coze-dev/coze-js/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/coze-dev/coze-js.git",
"directory": "packages/coze-taro"
},
"license": "MIT",
"author": "yjfengwen <[email protected]>",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"LICENSE",
"README.md",
"README.zh-CN.md"
],
"scripts": {
"build": "rm -rf dist && tsc -b tsconfig.build.json -f",
"format": "prettier --write .",
"lint": "eslint ./ --cache --quiet",
"test": "vitest --run",
"test:cov": "vitest --coverage --run"
},
"dependencies": {
"@coze/api": "workspace:*"
},
"devDependencies": {
"@coze-infra/eslint-config": "workspace:*",
"@coze-infra/ts-config": "workspace:*",
"@coze-infra/vitest-config": "workspace:*",
"@types/node": "^20",
"@vitest/coverage-v8": "~2.1.4",
"typescript": "^5.5.3",
"vitest": "~2.1.4"
},
"peerDependencies": {
"@tarojs/taro": ">=3",
"axios": "^1.7.1"
},
"cozePublishConfig": {}
}