-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.6 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 1.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "@nulz-rip/code",
"version": "1.0.3",
"description": "Nulz Code — free, bring-your-own-key agentic coding CLI. Multi-provider (Gemini, Claude, OpenRouter, OpenAI, Ollama + more), tools, scraping, automation.",
"type": "module",
"author": "Nulz (https://nulz.rip/)",
"homepage": "https://nulz.codes/",
"repository": {
"type": "git",
"url": "git+https://github.com/nulz-rip/code.git"
},
"bugs": {
"url": "https://github.com/nulz-rip/code/issues"
},
"bin": {
"nulz": "dist/cli.js"
},
"publishConfig": {
"access": "public"
},
"changelog": [
"1.0.3 — homepage → nulz.codes",
"co-author trailer enforced in code",
"clean title · in-depth commit body",
"native copy · live themes · plan mode"
],
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"dev": "tsx src/cli.tsx",
"start": "node dist/cli.js",
"test": "node --import tsx --test test/*.test.ts",
"prepublishOnly": "npm run build && npm test"
},
"engines": {
"node": ">=20"
},
"keywords": [
"cli",
"ai",
"agent",
"coding",
"byok",
"gemini",
"claude",
"openrouter",
"ollama",
"scraping",
"automation"
],
"license": "MIT",
"dependencies": {
"@google/genai": "^1.9.0",
"ink": "^5.1.0",
"ink-spinner": "^5.0.0",
"ink-text-input": "^6.0.0",
"react": "^18.3.1"
},
"optionalDependencies": {
"playwright": "^1.61.0"
},
"devDependencies": {
"@types/node": "^22.10.0",
"@types/react": "^18.3.0",
"tsx": "^4.19.0",
"typescript": "^5.7.0"
}
}