-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.43 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.43 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
{
"name": "grill",
"version": "0.1.0",
"description": "A local inbox for agent questions",
"license": "MIT",
"bin": {
"grill": "bin/grill"
},
"files": [
"dist",
"bin"
],
"type": "module",
"scripts": {
"dev": "vite",
"typecheck": "tsc --noEmit",
"check:effect": "effect-tsgo diagnostics --project tsconfig.json",
"lint": "oxlint",
"lint:fix": "oxlint --fix",
"format": "oxfmt",
"format:check": "oxfmt --check",
"test": "vitest run",
"build": "tsc -p tsconfig.server.json && vite build",
"prepack": "tsc -p tsconfig.server.json && vite build"
},
"dependencies": {
"@effect/platform-browser": "4.0.0-beta.97",
"@effect/platform-node": "4.0.0-beta.97",
"@foldkit/devtools": "0.131.0",
"@foldkit/markdown": "0.1.1",
"@foldkit/ui": "0.131.0",
"@tailwindcss/vite": "^4.3.1",
"effect": "4.0.0-beta.97",
"foldkit": "0.131.0",
"tailwindcss": "^4.3.1"
},
"devDependencies": {
"@effect/language-service": "^0.87.1",
"@effect/tsgo": "0.24.2",
"@effect/vitest": "4.0.0-beta.97",
"@foldkit/oxlint-plugin": "0.4.0",
"@foldkit/vite-plugin": "0.11.0",
"@types/node": "^24.0.0",
"happy-dom": "^20.10.4",
"oxfmt": "^0.60.0",
"oxlint": "^1.75.0",
"oxlint-tsgolint": "^7.0.2001",
"typescript": "^7.0.0",
"vite": "^8.0.16",
"vitest": "^4.1.9"
},
"engines": {
"node": ">=26"
},
"packageManager": "bun@1.3.13"
}