kraken-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/LICENSE +21 -0
- package/README.md +216 -0
- package/dist/cli/index.js +1453 -0
- package/dist/google-auth.js +4632 -0
- package/dist/index.js +17160 -0
- package/package.json +99 -0
package/package.json
ADDED
|
@@ -0,0 +1,99 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "kraken-code",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "Kraken Code - Transforms OpenCode into an autonomous, high-density development environment",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "dist/index.js",
|
|
7
|
+
"module": "dist/index.js",
|
|
8
|
+
"types": "dist/index.d.ts",
|
|
9
|
+
"bin": {
|
|
10
|
+
"kraken-code": "./dist/cli/index.js"
|
|
11
|
+
},
|
|
12
|
+
"files": [
|
|
13
|
+
"dist"
|
|
14
|
+
],
|
|
15
|
+
"exports": {
|
|
16
|
+
".": {
|
|
17
|
+
"types": "./dist/index.d.ts",
|
|
18
|
+
"import": "./dist/index.js"
|
|
19
|
+
},
|
|
20
|
+
"./google-auth": {
|
|
21
|
+
"types": "./dist/google-auth.d.ts",
|
|
22
|
+
"import": "./dist/google-auth.js"
|
|
23
|
+
},
|
|
24
|
+
"./schema.json": "./dist/kraken-code.schema.json"
|
|
25
|
+
},
|
|
26
|
+
"scripts": {
|
|
27
|
+
"build": "bun build src/index.ts src/google-auth.ts --outdir dist --target node --format esm --external @opencode-ai/plugin --external @opencode-ai/sdk --external zod && bun build src/cli/index.ts --outdir dist/cli --target bun --format esm --packages external && bun run build:schema",
|
|
28
|
+
"build:schema": "bun run script/build-schema.ts",
|
|
29
|
+
"clean": "rm -rf dist",
|
|
30
|
+
"prepublishOnly": "bun run clean && bun run build",
|
|
31
|
+
"typecheck": "tsc --noEmit",
|
|
32
|
+
"test": "bun test",
|
|
33
|
+
"install:curl": "bash scripts/install-curl.sh"
|
|
34
|
+
},
|
|
35
|
+
"keywords": [
|
|
36
|
+
"opencode",
|
|
37
|
+
"kraken-code",
|
|
38
|
+
"plugin",
|
|
39
|
+
"kraken",
|
|
40
|
+
"maelstrom",
|
|
41
|
+
"abyssal",
|
|
42
|
+
"nautilus",
|
|
43
|
+
"coral",
|
|
44
|
+
"siren",
|
|
45
|
+
"leviathan",
|
|
46
|
+
"poseidon",
|
|
47
|
+
"scylla",
|
|
48
|
+
"agents",
|
|
49
|
+
"ai",
|
|
50
|
+
"llm",
|
|
51
|
+
"skills",
|
|
52
|
+
"commands",
|
|
53
|
+
"memory",
|
|
54
|
+
"mcp"
|
|
55
|
+
],
|
|
56
|
+
"author": "Kraken Code Team",
|
|
57
|
+
"license": "MIT",
|
|
58
|
+
"repository": {
|
|
59
|
+
"type": "git",
|
|
60
|
+
"url": "git+https://github.com/leviathofnoesia/kraken-code.git"
|
|
61
|
+
},
|
|
62
|
+
"bugs": {
|
|
63
|
+
"url": "https://github.com/leviathofnoesia/kraken-code/issues"
|
|
64
|
+
},
|
|
65
|
+
"homepage": "https://github.com/leviathofnoesia/kraken-code#readme",
|
|
66
|
+
"dependencies": {
|
|
67
|
+
"@ast-grep/cli": "^0.40.0",
|
|
68
|
+
"@ast-grep/napi": "^0.40.0",
|
|
69
|
+
"@clack/core": "^0.5.0",
|
|
70
|
+
"@clack/prompts": "^1.0.0-alpha.9",
|
|
71
|
+
"@modelcontextprotocol/sdk": "^1.25.1",
|
|
72
|
+
"@openauthjs/openauth": "^0.4.3",
|
|
73
|
+
"@opencode-ai/plugin": "^1.1.1",
|
|
74
|
+
"@opencode-ai/sdk": "^1.1.1",
|
|
75
|
+
"commander": "^14.0.2",
|
|
76
|
+
"glob": "^11.0.0",
|
|
77
|
+
"hono": "^4.10.4",
|
|
78
|
+
"js-yaml": "^4.1.1",
|
|
79
|
+
"jsonc-parser": "^3.3.1",
|
|
80
|
+
"kratos-mcp": "4.0.0",
|
|
81
|
+
"open": "^11.0.0",
|
|
82
|
+
"picocolors": "^1.1.1",
|
|
83
|
+
"picomatch": "^4.0.2",
|
|
84
|
+
"xdg-basedir": "^5.1.0",
|
|
85
|
+
"zod": "4.1.8"
|
|
86
|
+
},
|
|
87
|
+
"devDependencies": {
|
|
88
|
+
"@types/js-yaml": "^4.0.9",
|
|
89
|
+
"@types/picomatch": "^3.0.2",
|
|
90
|
+
"bun-types": "latest",
|
|
91
|
+
"typescript": "^5.9.3",
|
|
92
|
+
"typescript-language-server": "^5.1.3"
|
|
93
|
+
},
|
|
94
|
+
"trustedDependencies": [
|
|
95
|
+
"@ast-grep/cli",
|
|
96
|
+
"@ast-grep/napi",
|
|
97
|
+
"@code-yeongyu/comment-checker"
|
|
98
|
+
]
|
|
99
|
+
}
|