-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 834 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 834 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
{
"name": "@jacksontian/kimi",
"version": "1.2.1",
"description": "The Node.js library and CLI for Moonshot AI",
"main": "lib/kimi.js",
"files": [
"lib"
],
"directories": {
"lib": "lib",
"test": "test"
},
"type": "module",
"engines": {
"node": ">= 14"
},
"scripts": {
"lint": "eslint --fix lib test",
"test": "mocha --reporter spec test/*.test.js",
"test-cov": "c8 -r=lcov -r=html -r=text -r=json npm run test",
"test-dev": "mocha --reporter spec"
},
"keywords": [
"Moonshot",
"AI",
"Kimi"
],
"author": "Jackson Tian",
"license": "MIT",
"devDependencies": {
"c8": "^10.1.2",
"eslint": "^9",
"mocha": "^11.7.1"
},
"dependencies": {
"@alicloud/tea-fileform": "^1.2.0",
"httpx": "^3",
"ini": "^5.0.0",
"mime": "^4.0.1"
}
}