-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1015 Bytes
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1015 Bytes
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
{
"name": "engram",
"version": "0.1.0",
"description": "AI skill manager backed by git repos",
"type": "module",
"bin": {
"engram": "./src/main.ts"
},
"scripts": {
"build": "tsc",
"typecheck": "tsgo --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix"
},
"dependencies": {
"@clack/prompts": "^1.5.1",
"@effect/cli": "^0.75.0",
"@effect/platform": "^0.96.0",
"@effect/platform-node": "^0.107.0",
"@effect/printer": "^0.49.0",
"@effect/printer-ansi": "^0.49.0",
"@effect/typeclass": "^0.40.0",
"effect": "^3.21.0",
"tsx": "^4.19.0"
},
"devDependencies": {
"@effect/vitest": "^0.29.0",
"@eslint/js": "^10.0.1",
"@types/node": "^22.0.0",
"@typescript/native-preview": "^7.0.0-dev.20260611.2",
"eslint": "^10.4.1",
"typescript": "^5.7.0",
"typescript-eslint": "^8.61.0",
"vitest": "^3.2.6"
},
"overrides": {
"esbuild": "^0.28.1"
}
}