forked from Hmbown/CodeWhale
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.43 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.43 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
{
"name": "codewhale",
"version": "0.8.44",
"codewhaleBinaryVersion": "0.8.44",
"description": "Install and run CodeWhale, the agentic terminal for open-source and open-weight coding models, from GitHub release artifacts.",
"author": "Hmbown",
"license": "MIT",
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/Hmbown"
},
{
"type": "buymeacoffee",
"url": "https://www.buymeacoffee.com/hmbown"
}
],
"homepage": "https://github.com/Hmbown/CodeWhale",
"repository": {
"type": "git",
"url": "git+https://github.com/Hmbown/CodeWhale.git"
},
"bugs": {
"url": "https://github.com/Hmbown/CodeWhale/issues"
},
"keywords": [
"codewhale",
"deepseek",
"cli",
"tui",
"rust",
"binary",
"terminal"
],
"type": "commonjs",
"bin": {
"codewhale": "bin/codewhale.js",
"codew": "bin/codew.js",
"codewhale-tui": "bin/codewhale-tui.js"
},
"scripts": {
"release:check": "node scripts/verify-release-assets.js",
"postinstall": "node scripts/install.js --optional",
"prepublishOnly": "node scripts/verify-release-assets.js",
"prepack": "node scripts/install.js",
"test": "node --test test/*.test.js"
},
"engines": {
"node": ">=18"
},
"publishConfig": {
"access": "public"
},
"preferGlobal": true,
"files": [
"bin/*.js",
"scripts/*.js",
"test/*.js",
"README.md",
"package.json"
]
}