-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 2.89 KB
/
Copy pathpackage.json
File metadata and controls
107 lines (107 loc) · 2.89 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "woopcode",
"version": "1.0.0",
"description": "A terminal coding agent that shows every edit as a diff before it writes, and asks before running a shell command it cannot vouch for",
"license": "MIT",
"author": {
"name": "Manas Raghuwanshi",
"url": "https://github.com/mangit955"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mangit955/woop-code.git"
},
"homepage": "https://woop-code.vercel.app",
"bugs": {
"url": "https://github.com/mangit955/woop-code/issues"
},
"keywords": [
"ai",
"coding-assistant",
"cli",
"terminal",
"autonomous-agent",
"llm",
"gemini",
"bun",
"typescript",
"developer-tools",
"code-generation",
"ai-agent"
],
"bin": {
"woopcode": "./cli.ts"
},
"main": "./cli.ts",
"type": "module",
"files": [
"cli.ts",
"commands/",
"config/",
"providers/",
"runtime/",
"tools/",
"tui/",
"onboarding/",
"README.md",
"LICENSE",
"CONTRIBUTING.md"
],
"scripts": {
"start": "bun ./cli.ts",
"site": "bun --hot ./site/server.ts",
"site:build": "bun build ./site/index.html --outdir ./site/dist --minify",
"site:build:static": "bun ./site/scripts/build-static.ts",
"docs:extract": "bun ./site/scripts/extract.ts",
"docs:tokens": "bun ./site/scripts/generate-tokens.ts",
"docs:lint": "bun ./site/scripts/check-docs.ts",
"docs:check": "bun ./site/scripts/extract.ts --check && bun ./site/scripts/check-docs.ts",
"test": "bun test && bunx --no-install tsc --noEmit",
"test:watch": "bun test --watch",
"verify": "bun ./verify.ts",
"verify:all": "bun ./verify.ts --all",
"hooks:install": "git config core.hooksPath .githooks",
"prepare": "git config core.hooksPath .githooks || true",
"replay:baseline": "bun ./packages/tests/replay/cli.ts",
"replay:generate": "bun ./packages/tests/replay/generate.ts",
"prepublishOnly": "bun test"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.115.0",
"@google/genai": "^2.12.0",
"@inkjs/ui": "^2.0.0",
"chalk": "^5.6.2",
"cli-highlight": "^2.1.11",
"commander": "^12.0.0",
"diff": "^9.0.0",
"e2b": "^2.38.2",
"ink": "^7.1.1",
"ink-spinner": "^5.0.0",
"ink-text-input": "^6.0.0",
"marked": "^18.0.7",
"openai": "^7.4.0",
"react": "^19.2.7",
"simplex-noise": "^4.0.3"
},
"devDependencies": {
"@fontsource-variable/inter": "^5.3.0",
"@stryker-mutator/core": "^9.6.1",
"@stryker-mutator/typescript-checker": "^9.6.1",
"@types/bun": "latest",
"@types/commander": "^2.12.5",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"fast-check": "^4.9.0",
"react-dom": "19.2.7"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"engines": {
"bun": ">=1.0.0"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}