返回 CodeWhale
package.json
根目录 / npm / codewhale / package.json
1 {
2 "name": "codewhale",
3 "version": "0.9.4",
4 "codewhaleBinaryVersion": "0.9.4",
5 "description": "Terminal coding agent for supported hosted and local models. One runtime on your machine. Rust, MIT.",
6 "author": "Hmbown",
7 "license": "MIT",
8 "funding": [
9 {
10 "type": "github",
11 "url": "https://github.com/sponsors/Hmbown"
12 },
13 {
14 "type": "buymeacoffee",
15 "url": "https://www.buymeacoffee.com/hmbown"
16 }
17 ],
18 "homepage": "https://github.com/Hmbown/CodeWhale",
19 "repository": {
20 "type": "git",
21 "url": "git+https://github.com/Hmbown/CodeWhale.git"
22 },
23 "bugs": {
24 "url": "https://github.com/Hmbown/CodeWhale/issues"
25 },
26 "keywords": [
27 "codewhale",
28 "deepseek",
29 "cli",
30 "tui",
31 "rust",
32 "binary",
33 "terminal"
34 ],
35 "type": "commonjs",
36 "bin": {
37 "codewhale": "bin/codewhale.js",
38 "codew": "bin/codew.js",
39 "codewhale-tui": "bin/codewhale-tui.js"
40 },
41 "scripts": {
42 "release:check": "node scripts/verify-release-assets.js",
43 "postinstall": "node scripts/install.js --optional",
44 "prepublishOnly": "bash ../../scripts/release/require-release-tag-checkout.sh && bash ../../scripts/release/verify-release-assets.sh",
45 "prepack": "node scripts/install.js",
46 "test": "node --test test/*.test.js"
47 },
48 "engines": {
49 "node": ">=18"
50 },
51 "publishConfig": {
52 "access": "public"
53 },
54 "preferGlobal": true,
55 "files": [
56 "bin/*.js",
57 "scripts/*.js",
58 "test/*.js",
59 "README.md",
60 "package.json"
61 ]
62 }
63
63 lines JSON