glenn-code 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,56 @@
1
+ {
2
+ "name": "glenn-code",
3
+ "version": "1.0.0",
4
+ "description": "Glenn Code - Connect your local development environment to DNM Lab",
5
+ "type": "module",
6
+ "main": "dist/index.js",
7
+ "types": "dist/index.d.ts",
8
+ "bin": {
9
+ "glenn-code": "./bin/cli.js"
10
+ },
11
+ "files": [
12
+ "dist",
13
+ "bin"
14
+ ],
15
+ "scripts": {
16
+ "build": "npm run build:bundle",
17
+ "build:tsc": "tsc",
18
+ "build:bundle": "node esbuild.config.js",
19
+ "prepublishOnly": "npm run build",
20
+ "dev": "WORKSPACE_DIR=$(cd ../.. && pwd) tsx src/index.ts",
21
+ "dev:signalr": "WORKSPACE_DIR=$(cd ../.. && pwd) tsx src/adapters/signalr/index.ts",
22
+ "dev:signalr:local": "LOCAL_MODE=true tsx src/adapters/signalr/index.ts",
23
+ "start": "node dist/index.js",
24
+ "start:signalr:local": "LOCAL_MODE=true node dist/cli.js"
25
+ },
26
+ "repository": {
27
+ "type": "git",
28
+ "url": "https://github.com/dnm-lab/dnm-agent-local"
29
+ },
30
+ "keywords": [
31
+ "dnm-lab",
32
+ "ai-agent",
33
+ "development",
34
+ "claude",
35
+ "signalr"
36
+ ],
37
+ "author": "DNM Lab",
38
+ "license": "MIT",
39
+ "engines": {
40
+ "node": ">=18.0.0"
41
+ },
42
+ "devDependencies": {
43
+ "@types/inquirer": "^9.0.9",
44
+ "@types/node": "^22.0.0",
45
+ "esbuild": "^0.24.2",
46
+ "tsx": "^4.19.0",
47
+ "typescript": "^5.6.0"
48
+ },
49
+ "dependencies": {
50
+ "@anthropic-ai/claude-agent-sdk": "^0.1.71",
51
+ "@microsoft/signalr": "^8.0.7",
52
+ "@modelcontextprotocol/sdk": "^1.25.1",
53
+ "inquirer": "^13.1.0",
54
+ "zod": "^3.24.1"
55
+ }
56
+ }