This repository was archived by the owner on Sep 25, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.28 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.28 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
{
"name": "@kattsushi/effect-react-router",
"version": "0.0.2",
"description": "Utilities for using react with react-router 7 + effect-ts",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"scripts": {
"lint": "biome lint . && biome format . && prettier --check .",
"format": "biome format --write . && prettier --write .",
"build": "bun run --bun build:full",
"build:full": "tsup --dts --clean",
"dev": "tsup --no-dts --watch",
"prepack": "bun run --bun build:full",
"test": "vitest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kattsushi/effect-react-router.git"
},
"keywords": [],
"author": "Andres Jimenez",
"license": "MIT",
"bugs": {
"url": "https://github.com/kattsushi/effect-react-router/issues"
},
"engines": {
"node": ">=18.20.0"
},
"homepage": "https://github.com/kattsushi/effect-react-router#readme",
"peerDependencies": {
"effect": "3.9.1",
"react-router": "7.0.0-pre.0"
},
"devDependencies": {
"bun": "1.1.30",
"@biomejs/biome": "1.9.3",
"@domin-mnd/config": "^0.0.3",
"@types/node": "^20",
"@vitest/coverage-v8": "^1.4.0",
"prettier": "^3.2.5",
"tsup": "8.3.0",
"typescript": "5.6.3",
"vitest": "2.1.2"
}
}