-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
48 lines (48 loc) · 952 Bytes
/
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
{
"name": "@jacksontian/kimi-cli",
"version": "1.1.0",
"description": "The CLI for Moonshot AI",
"main": "lib/kimi.js",
"bin": {
"kimi": "bin/kimi.js",
"kimi-file": "bin/kimi-file.js"
},
"files": [
"lib",
"bin"
],
"directories": {
"lib": "lib",
"test": "test"
},
"type": "module",
"engines": {
"node": ">= 14"
},
"scripts": {
"lint": "eslint --fix lib bin",
"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": "^10.7.3"
},
"dependencies": {
"@jacksontian/kimi": "^1.2.1",
"chalk": "^5.3.0",
"httpx": "^3",
"ini": "^4.1.2",
"inquirer": "^9.2.16",
"kitx": "^2.1.0"
}
}