-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 986 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 986 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
{
"name": "@akoenig/effective",
"description": "Monorepo for Effect-based packages",
"version": "1.0.0",
"author": "André König <andre.koenig@openformation.io>",
"devDependencies": {
"@biomejs/biome": "2.1.1",
"@changesets/cli": "^2.29.5",
"@types/node": "^22.16.2",
"syncpack": "14.0.0-alpha.18",
"turbo": "^2.5.4",
"typescript": "^5.8.3"
},
"keywords": [
"effect",
"typescript"
],
"license": "MIT",
"packageManager": "pnpm@10.12.4",
"private": true,
"scripts": {
"build": "turbo build",
"changeset": "changeset",
"changeset:publish": "changeset publish",
"changeset:status": "changeset status",
"changeset:version": "changeset version",
"check": "biome check .",
"check:fix": "biome check --write .",
"format": "biome format .",
"format:fix": "biome format --write .",
"lint": "biome lint .",
"lint:fix": "biome lint --write .",
"test": "pnpm -r test"
},
"type": "module"
}