-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.14 KB
/
package.json
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
{
"name": "@typed/route",
"version": "10.1.2",
"description": "Type-safe routing for Effect",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"lint": "biome lint --write",
"test:watch": "vitest --typecheck",
"test": "vitest run --typecheck",
"typecheck": "tsc --noEmit"
},
"keywords": [
"effect",
"routing",
"typescript",
"type-safety"
],
"author": "Tylor Steinberger <tlsteinberger167@gmail.com>",
"license": "MIT",
"packageManager": "pnpm@9.12.2+sha512.22721b3a11f81661ae1ec68ce1a7b879425a1ca5b991c975b074ac220b187ce56c708fe5db69f4c962c989452eee76c82877f4ee80f474cebd61ee13461b6228",
"dependencies": {
"@typed/guard": "^0.7.3",
"effect": "^3.11.9",
"ts-toolbelt": "^9.6.0"
},
"peerDependencies": {
"effect": "^3.11.9",
"ts-toolbelt": "^9.6.0"
},
"optionalPeerDependencies": {
"@effect/platform": "^0.71.6"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@effect/platform": "^0.71.6",
"@types/node": "^22.10.2",
"typescript": "^5.4.2",
"vitest": "^2.1.8"
}
}