-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.15 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.15 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
{
"name": "oma",
"version": "2.1.4",
"private": true,
"description": "OMA standalone multi-agent runtime for terminal-first coding workflows",
"author": {
"name": "Uğur Murat",
"email": "[email protected]"
},
"workspaces": [
"packages/*",
"packages/providers/*",
"apps/*"
],
"type": "module",
"packageManager": "[email protected]",
"main": "./dist/index.js",
"module": "./dist/index.js",
"bin": {
"oma": "./dist/apps/oma/oma.js"
},
"exports": {
".": {
"default": "./dist/index.js"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/vaur94/oma.git"
},
"files": [
"dist",
"schemas",
"templates"
],
"scripts": {
"setup": "bash ./scripts/setup.sh",
"build": "bash ./scripts/build.sh",
"dev": "bun build ./src/index.ts --outdir dist --target bun --sourcemap=inline --splitting --entry-naming='[dir]/[name].js' --chunk-naming='[name].js'",
"test": "bun test",
"lint": "bash ./scripts/lint.sh",
"lint:fix": "bash ./scripts/lint.sh --fix",
"format": "bun x prettier --write .",
"format:check": "bash ./scripts/format-check.sh",
"typecheck": "tsc --noEmit",
"release:audit": "bun ./scripts/release/audit.ts",
"release:flow": "bun ./scripts/release/flow.ts"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.80.0",
"@oma/kernel": "workspace:*",
"fast-xml-parser": "^5.5.8",
"ink": "^6.8.0",
"ink-spinner": "^5.0.0",
"ink-text-input": "^6.0.0",
"jsonc-parser": "^3.3.1",
"openai": "^6.32.0",
"react": "^19.2.4",
"react-devtools-core": "^7.0.1",
"smol-toml": "^1.3.1",
"yaml": "^2.8.1",
"zod": "^3.24.0",
"zod-to-json-schema": "^3.25.1"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^25.5.0",
"@types/react": "^19.2.14",
"@typescript-eslint/eslint-plugin": "8.57.1",
"@typescript-eslint/parser": "8.57.1",
"bun-types": "latest",
"eslint": "^10.1.0",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-prettier": "^5.1.3",
"prettier": "^3.2.4",
"typescript": "^6.0.2",
"typescript-eslint": "^8.57.1",
"vitest": "^4.1.0"
}
}