返回 CodeWhale
package.json
根目录 / npm / codewhale / package.json
1 {
2 "name": "codewhale",
3 "version": "0.10.0",
4 "codewhaleBinaryVersion": "0.10.0",
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 },
40 "scripts": {
41 "release:check": "node scripts/verify-release-assets.js",
42 "postinstall": "node scripts/install.js --optional",
43 "prepublishOnly": "bash ../../scripts/release/require-release-tag-checkout.sh && bash ../../scripts/release/verify-release-assets.sh",
44 "prepack": "node scripts/install.js",
45 "test": "node --test test/*.test.js"
46 },
47 "engines": {
48 "node": ">=18"
49 },
50 "publishConfig": {
51 "access": "public"
52 },
53 "preferGlobal": true,
54 "files": [
55 "bin/*.js",
56 "scripts/*.js",
57 "test/*.js",
58 "README.md",
59 "package.json"
60 ]
61 }
62
62 lines JSON