-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.02 KB
/
package.json
File metadata and controls
34 lines (34 loc) · 1.02 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
{
"name": "effect-playground",
"version": "1.0.0",
"description": "A collection of scripts to explore the Effect ecosystem",
"author": "Cosimo Matteini",
"type": "module",
"scripts": {
"format": "prettier --write src/**/*.ts",
"typecheck": "tsc --noEmit",
"typecheck:w": "tsc --noEmit --watch",
"test": "vitest run",
"test:w": "vitest watch"
},
"dependencies": {
"effect": "3.21.0",
"@effect/typeclass": "0.40.0",
"@effect/printer": "0.49.0",
"@effect/printer-ansi": "0.49.0",
"@effect/cli": "0.75.0",
"@effect/platform": "0.96.0",
"@effect/platform-node": "0.106.0",
"@effect/experimental": "0.60.0"
},
"devDependencies": {
"@types/node": "24.12.2",
"typescript": "5.8.3",
"prettier": "3.8.1",
"@effect/vitest": "0.29.0",
"vite": "8.0.7",
"vitest": "4.1.3",
"@effect/language-service": "0.84.3"
},
"packageManager": "pnpm@10.30.3"
}