omctest 0.0.1 → 0.0.3
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/dist/cli/config-manager/generate-opencode-install-config.d.ts +2 -0
- package/dist/cli/index.js +20412 -2659
- package/dist/index.js +1 -1
- package/package.json +90 -86
package/dist/index.js
CHANGED
|
@@ -134233,7 +134233,7 @@ class PostHog extends PostHogBackendClient {
|
|
|
134233
134233
|
// package.json
|
|
134234
134234
|
var package_default = {
|
|
134235
134235
|
name: "omctest",
|
|
134236
|
-
version: "0.0.
|
|
134236
|
+
version: "0.0.3",
|
|
134237
134237
|
description: "Temporary Oh My Crew npm install test package",
|
|
134238
134238
|
main: "./dist/index.js",
|
|
134239
134239
|
types: "dist/index.d.ts",
|
package/package.json
CHANGED
|
@@ -1,87 +1,91 @@
|
|
|
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
|
-
|
|
1
|
+
{
|
|
2
|
+
"name": "omctest",
|
|
3
|
+
"version": "0.0.3",
|
|
4
|
+
"description": "Temporary Oh My Crew npm install test package",
|
|
5
|
+
"main": "./dist/index.js",
|
|
6
|
+
"types": "dist/index.d.ts",
|
|
7
|
+
"type": "module",
|
|
8
|
+
"bin": {
|
|
9
|
+
"omctest": "bin/oh-my-opencode.js",
|
|
10
|
+
"oh-my-crew": "bin/oh-my-opencode.js"
|
|
11
|
+
},
|
|
12
|
+
"files": [
|
|
13
|
+
"dist",
|
|
14
|
+
"bin/oh-my-opencode.js"
|
|
15
|
+
],
|
|
16
|
+
"exports": {
|
|
17
|
+
".": {
|
|
18
|
+
"types": "./dist/index.d.ts",
|
|
19
|
+
"import": "./dist/index.js"
|
|
20
|
+
},
|
|
21
|
+
"./schema.json": "./dist/oh-my-opencode.schema.json"
|
|
22
|
+
},
|
|
23
|
+
"scripts": {
|
|
24
|
+
"build": "bun run clean \u0026\u0026 bun build src/index.ts --outdir dist --target bun --format esm --external @ast-grep/napi --external zod \u0026\u0026 tsc --emitDeclarationOnly \u0026\u0026 bun build src/cli/js-index.ts --outdir dist/cli --target node --format esm --packages external \u0026\u0026 mv dist/cli/js-index.js dist/cli/index.js \u0026\u0026 bun run build:schema",
|
|
25
|
+
"build:all": "bun run build \u0026\u0026 bun run build:binaries",
|
|
26
|
+
"build:binaries": "bun run script/build-binaries.ts",
|
|
27
|
+
"build:schema": "bun run script/build-schema.ts",
|
|
28
|
+
"build:model-capabilities": "bun run script/build-model-capabilities.ts",
|
|
29
|
+
"clean": "rm -rf dist",
|
|
30
|
+
"prepare": "bun run build",
|
|
31
|
+
"prepublishOnly": "bun run build",
|
|
32
|
+
"test:model-capabilities": "bun test src/shared/model-capability-aliases.test.ts src/shared/model-capability-guardrails.test.ts src/shared/model-capabilities.test.ts src/cli/doctor/checks/model-resolution.test.ts --bail",
|
|
33
|
+
"typecheck": "tsc --noEmit",
|
|
34
|
+
"test": "bun test"
|
|
35
|
+
},
|
|
36
|
+
"keywords": [
|
|
37
|
+
"opencode",
|
|
38
|
+
"plugin",
|
|
39
|
+
"oracle",
|
|
40
|
+
"librarian",
|
|
41
|
+
"agents",
|
|
42
|
+
"ai",
|
|
43
|
+
"llm"
|
|
44
|
+
],
|
|
45
|
+
"author": "michaelxer (fork of oh-my-openagent by YeonGyu-Kim)",
|
|
46
|
+
"license": "SUL-1.0",
|
|
47
|
+
"repository": {
|
|
48
|
+
"type": "git",
|
|
49
|
+
"url": "git+https://github.com/michaelxer/oh-my-crew.git"
|
|
50
|
+
},
|
|
51
|
+
"bugs": {
|
|
52
|
+
"url": "https://github.com/michaelxer/oh-my-crew/issues"
|
|
53
|
+
},
|
|
54
|
+
"homepage": "https://github.com/michaelxer/oh-my-crew#readme",
|
|
55
|
+
"dependencies": {
|
|
56
|
+
"@ast-grep/cli": "^0.41.1",
|
|
57
|
+
"@ast-grep/napi": "^0.41.1",
|
|
58
|
+
"@clack/prompts": "^0.11.0",
|
|
59
|
+
"@code-yeongyu/comment-checker": "^0.7.0",
|
|
60
|
+
"@modelcontextprotocol/sdk": "^1.25.2",
|
|
61
|
+
"@opencode-ai/plugin": "^1.4.0",
|
|
62
|
+
"@opencode-ai/sdk": "^1.4.0",
|
|
63
|
+
"commander": "^14.0.2",
|
|
64
|
+
"detect-libc": "^2.0.0",
|
|
65
|
+
"diff": "^8.0.3",
|
|
66
|
+
"js-yaml": "^4.1.1",
|
|
67
|
+
"jsonc-parser": "^3.3.1",
|
|
68
|
+
"picocolors": "^1.1.1",
|
|
69
|
+
"picomatch": "^4.0.4",
|
|
70
|
+
"posthog-node": "^5.29.2",
|
|
71
|
+
"vscode-jsonrpc": "^8.2.0",
|
|
72
|
+
"zod": "^4.3.0"
|
|
73
|
+
},
|
|
74
|
+
"devDependencies": {
|
|
75
|
+
"@types/js-yaml": "^4.0.9",
|
|
76
|
+
"@types/picomatch": "^3.0.2",
|
|
77
|
+
"bun-types": "1.3.11",
|
|
78
|
+
"typescript": "^5.7.3"
|
|
79
|
+
},
|
|
80
|
+
"overrides": {
|
|
81
|
+
|
|
82
|
+
},
|
|
83
|
+
"trustedDependencies": [
|
|
84
|
+
"@ast-grep/cli",
|
|
85
|
+
"@ast-grep/napi",
|
|
86
|
+
"@code-yeongyu/comment-checker"
|
|
87
|
+
],
|
|
88
|
+
"peerDependencies": {
|
|
89
|
+
|
|
90
|
+
}
|
|
87
91
|
}
|