-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1022 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 1022 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
{
"name": "effect-playground",
"version": "1.0.0",
"description": "A collection of scripts to explore the Effect ecosystem",
"author": "Cosimo Matteini",
"scripts": {
"format": "prettier --write src/**/*.ts",
"typecheck": "tsc --noEmit",
"typecheck:w": "tsc --noEmit --watch",
"test": "vitest run",
"test:w": "vitest watch"
},
"dependencies": {
"effect": "3.19.19",
"@effect/typeclass": "0.38.0",
"@effect/printer": "0.47.0",
"@effect/printer-ansi": "0.47.0",
"@effect/cli": "0.73.2",
"@effect/platform": "0.94.5",
"@effect/platform-node": "0.104.1",
"@effect/experimental": "0.58.0"
},
"devDependencies": {
"@types/node": "22.15.17",
"typescript": "5.8.3",
"tsx": "4.19.4",
"prettier": "3.5.3",
"@effect/vitest": "0.22.0",
"vitest": "3.1.3",
"@effect/language-service": "0.77.0"
},
"packageManager": "pnpm@10.30.3"
}