-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.32 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.32 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
{
"$schema": "https://json.schemastore.org/package.json",
"name": "elastic-ramen",
"description": "AI-powered development tool for Elastic",
"private": true,
"type": "module",
"packageManager": "[email protected]",
"scripts": {
"dev": "bun run --cwd packages/opencode --conditions=browser src/index.ts",
"typecheck": "bun turbo typecheck",
"prepare": "husky",
"test": "echo 'do not run tests from root' && exit 1"
},
"workspaces": {
"packages": [
"packages/opencode",
"packages/sdk/js",
"packages/plugin",
"packages/script",
"packages/util"
],
"catalog": {
"@types/bun": "1.3.9",
"@octokit/rest": "22.0.0",
"@types/node": "22.13.9",
"@types/semver": "7.7.1",
"@tsconfig/node22": "22.0.2",
"@tsconfig/bun": "1.0.9",
"@pierre/diffs": "1.1.0-beta.18",
"diff": "8.0.2",
"effect": "4.0.0-beta.29",
"ai": "5.0.124",
"hono": "4.10.7",
"fuzzysort": "3.1.0",
"marked": "17.0.1",
"marked-shiki": "1.2.1",
"typescript": "5.8.2",
"@typescript/native-preview": "7.0.0-dev.20251207.1",
"zod": "4.1.8",
"remeda": "2.26.0",
"shiki": "3.20.0",
"semver": "7.7.1",
"@hono/zod-validator": "0.4.2",
"hono-openapi": "1.1.2",
"solid-js": "1.9.10",
"ulid": "3.0.1"
}
},
"devDependencies": {
"@tsconfig/bun": "catalog:",
"@types/semver": "catalog:",
"@typescript/native-preview": "catalog:",
"husky": "9.1.7",
"prettier": "3.6.2",
"turbo": "2.8.13"
},
"dependencies": {
"@opencode-ai/plugin": "workspace:*",
"@opencode-ai/script": "workspace:*",
"@opencode-ai/sdk": "workspace:*",
"typescript": "catalog:"
},
"repository": {
"type": "git",
"url": "https://github.com/elastic/elastic-ramen"
},
"license": "MIT",
"prettier": {
"semi": false,
"printWidth": 120
},
"trustedDependencies": [
"esbuild",
"protobufjs",
"tree-sitter",
"tree-sitter-bash",
"web-tree-sitter"
],
"overrides": {
"@types/bun": "catalog:",
"@types/node": "catalog:"
},
"patchedDependencies": {
"@standard-community/[email protected]": "patches/@standard-community%[email protected]",
"@openrouter/[email protected]": "patches/@openrouter%[email protected]"
}
}