-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.98 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.98 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
{
"name": "effect-tasks",
"version": "1.0.0",
"type": "module",
"private": true,
"scripts": {
"prepare": "effect-language-service patch",
"mini-agent": "doppler run -- bun src/cli/main.ts",
"start": "bun src/cli/main.ts",
"dev": "bun --watch src/cli/main.ts",
"typecheck": "tsc --noEmit",
"lint": "eslint \"src/**/*.ts\" \"src/**/*.tsx\" \"test/**/*.ts\"",
"lint:fix": "eslint \"src/**/*.ts\" \"src/**/*.tsx\" \"test/**/*.ts\" --fix",
"check": "bun run typecheck && bun run lint",
"check:fix": "bun run typecheck && bun run lint:fix",
"test": "doppler run -- vitest run",
"test:watch": "doppler run -- vitest"
},
"devDependencies": {
"@effect/eslint-plugin": "^0.3.2",
"@effect/language-service": "^0.57.1",
"@effect/vitest": "^0.25.1",
"@eslint/compat": "^1.1.1",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.10.0",
"@types/bun": "latest",
"@types/react": "19",
"@typescript-eslint/eslint-plugin": "^8.4.0",
"@typescript-eslint/parser": "^8.4.0",
"eslint": "^9.10.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-sort-destructure-keys": "^2.0.0",
"semver": "^7.7.3",
"tuistory": "^0.0.2",
"vitest": "^3.2.0"
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"@effect/ai": "^0.32.1",
"@effect/ai-anthropic": "^0.22.0",
"@effect/ai-google": "^0.11.0",
"@effect/ai-openai": "^0.35.0",
"@effect/cli": "^0.72.1",
"@effect/opentelemetry": "^0.59.1",
"@effect/platform": "^0.93.5",
"@effect/platform-bun": "^0.85.0",
"@effect/rpc": "^0.72.2",
"@effect/rpc-http": "^0.52.4",
"@opentelemetry/otlp-transformer": "^0.208.0",
"@opentelemetry/sdk-trace-base": "^2.2.0",
"@opentui/core": "^0.1.55",
"@opentui/react": "^0.1.55",
"effect": "^3.19.8",
"react": "19",
"react-dom": "19",
"yaml": "^2.7.0"
}
}