octocode-cli 1.0.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,69 @@
1
+ {
2
+ "name": "octocode-cli",
3
+ "version": "1.0.0",
4
+ "description": "Interactive CLI installer for octocode-mcp - Configure MCP servers for Cursor, Claude Desktop, and more",
5
+ "type": "module",
6
+ "main": "out/octocode-cli.js",
7
+ "bin": {
8
+ "octocode": "./out/octocode-cli.js",
9
+ "octocode-cli": "./out/octocode-cli.js"
10
+ },
11
+ "files": [
12
+ "out/octocode-cli.js",
13
+ "assets/example.png",
14
+ "README.md",
15
+ "LICENSE"
16
+ ],
17
+ "scripts": {
18
+ "build": "yarn lint && vite build",
19
+ "build:dev": "vite build",
20
+ "clean": "rm -rf out/",
21
+ "lint": "eslint src/**/*.ts",
22
+ "lint:fix": "eslint src/**/*.ts --fix",
23
+ "start": "node ./out/octocode-cli.js",
24
+ "test": "vitest run --coverage",
25
+ "test:quiet": "vitest run --reporter=dot --silent",
26
+ "test:watch": "vitest --watch",
27
+ "typecheck": "tsc --noEmit"
28
+ },
29
+ "keywords": [
30
+ "octocode",
31
+ "mcp",
32
+ "model-context-protocol",
33
+ "cli",
34
+ "installer",
35
+ "cursor",
36
+ "claude",
37
+ "claude-code",
38
+ "windsurf",
39
+ "zed",
40
+ "cline",
41
+ "github",
42
+ "ai-coding"
43
+ ],
44
+ "author": "Guy Bary <bgauryy@octocodeai.com>",
45
+ "homepage": "https://octocode.ai",
46
+ "repository": {
47
+ "type": "git",
48
+ "url": "git+https://github.com/bgauryy/octocode-mcp.git",
49
+ "directory": "packages/octocode-cli"
50
+ },
51
+ "bugs": "https://github.com/bgauryy/octocode-mcp/issues",
52
+ "license": "PolyForm-Small-Business-1.0.0",
53
+ "dependencies": {
54
+ "@inquirer/prompts": "^7.2.1"
55
+ },
56
+ "devDependencies": {
57
+ "@types/node": "^22.15.29",
58
+ "@typescript-eslint/eslint-plugin": "^8.32.0",
59
+ "@typescript-eslint/parser": "^8.32.0",
60
+ "@vitest/coverage-v8": "^4.0.13",
61
+ "eslint": "^8.57.0",
62
+ "typescript": "^5.9.3",
63
+ "vite": "^6.0.0",
64
+ "vitest": "^4.0.13"
65
+ },
66
+ "engines": {
67
+ "node": ">=18.0.0"
68
+ }
69
+ }