-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·60 lines (60 loc) · 1.58 KB
/
package.json
File metadata and controls
executable file
·60 lines (60 loc) · 1.58 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
{
"name": "owl",
"version": "0.1.0",
"private": true,
"type": "module",
"engines": {
"node": ">=22.0.0",
"pnpm": ">=9.0.0"
},
"scripts": {
"build": "tsc --project tsconfig.json",
"dev": "tsx src/main.ts",
"owl": "tsx src/cli/index.ts",
"start": "node dist/main.js",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "eslint src tests",
"lint:fix": "eslint src tests --fix",
"format": "prettier --write \"src/**/*.{ts,tsx}\" \"tests/**/*.{ts,tsx}\"",
"format:check": "prettier --check \"src/**/*.{ts,tsx}\" \"tests/**/*.{ts,tsx}\"",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.95.2",
"@effect/cli": "0.75.1",
"@effect/platform": "0.96.1",
"@effect/platform-node": "0.106.0",
"@google/generative-ai": "^0.24.1",
"@modelcontextprotocol/sdk": "^1.29.0",
"chalk": "^5.6.2",
"diff": "^9.0.0",
"effect": "3.21.2",
"fast-glob": "^3.3.3",
"ink": "^7.0.2",
"openai": "^6.37.0",
"react": "^19.2.6"
},
"devDependencies": {
"@testing-library/react": "^16.3.2",
"@types/jsdom": "^28.0.3",
"@types/node": "^25.7.0",
"@types/react": "^19.2.14",
"@vitest/coverage-v8": "^2.1.8",
"eslint": "^10.3.0",
"jsdom": "^29.1.1",
"prettier": "^3.8.3",
"tsx": "^4.21.0",
"typescript": "^6.0.3",
"typescript-eslint": "^8.59.3",
"vitest": "^2.1.8"
},
"packageManager": "pnpm@10.32.1",
"optionalDependencies": {
"@rollup/rollup-darwin-x64": "^4.60.3"
},
"workspaces": [
"."
]
}