monkeyscode-cli 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,61 @@
1
+ {
2
+ "name": "monkeyscode-cli",
3
+ "version": "0.1.0",
4
+ "description": "MonkeysCode CLI — standalone terminal coding agent. Works independently of the IDE and Agent Manager.",
5
+ "license": "MIT",
6
+ "type": "module",
7
+ "main": "dist/monkeyscode-cli.cjs",
8
+ "bin": {
9
+ "mc": "dist/monkeyscode-cli.cjs",
10
+ "mcode": "dist/monkeyscode-cli.cjs",
11
+ "monkeyscode": "dist/monkeyscode-cli.cjs"
12
+ },
13
+ "files": [
14
+ "dist/monkeyscode-cli.cjs",
15
+ "README.md",
16
+ "LICENSE"
17
+ ],
18
+ "scripts": {
19
+ "build": "tsc",
20
+ "build:watch": "tsc --watch",
21
+ "bundle": "node esbuild.config.mjs",
22
+ "bundle:prod": "node esbuild.config.mjs --prod",
23
+ "build:sea": "bash scripts/build.sh --sea",
24
+ "release": "bash scripts/build.sh --all --checksums",
25
+ "dev": "tsx src/main.ts",
26
+ "start": "node dist/main.js",
27
+ "lint": "eslint src/",
28
+ "test": "node --import tsx --test tests/**/*.test.ts",
29
+ "test:watch": "node --import tsx --test --watch tests/**/*.test.ts",
30
+ "clean": "rm -rf dist",
31
+ "prepublishOnly": "npm run clean && npm run bundle:prod"
32
+ },
33
+ "keywords": [
34
+ "monkeyscode",
35
+ "cli",
36
+ "coding-agent",
37
+ "terminal",
38
+ "ai",
39
+ "standalone"
40
+ ],
41
+ "dependencies": {
42
+ "chalk": "^5.4.0",
43
+ "cli-highlight": "^2.1.11",
44
+ "commander": "^13.0.0",
45
+ "diff": "^7.0.0",
46
+ "marked": "^18.0.11",
47
+ "ora": "^8.1.0",
48
+ "ws": "^8.18.0"
49
+ },
50
+ "devDependencies": {
51
+ "@types/diff": "^6.0.0",
52
+ "@types/node": "^22.0.0",
53
+ "@types/ws": "^8.5.0",
54
+ "esbuild": "^0.24.0",
55
+ "tsx": "^4.19.0",
56
+ "typescript": "^5.7.0"
57
+ },
58
+ "engines": {
59
+ "node": ">=20.0.0"
60
+ }
61
+ }