-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.47 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.47 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "@btst/yar",
"version": "1.2.0",
"packageManager": "pnpm@10.14.0",
"description": "Pluggable router for modern react frameworks",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"scripts": {
"lint": "biome check .",
"lint:fix": "biome check . --write",
"format": "biome format --write",
"typecheck": "tsc --noEmit",
"bump": "bumpp",
"build": "tsup --dts --clean",
"dev": "tsup --watch",
"test": "vitest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/better-stack-ai/yar.git"
},
"keywords": [
"react",
"router",
"nextjs"
],
"author": "olliethedev",
"license": "MIT",
"bugs": {
"url": "https://github.com/better-stack-ai/yar/issues"
},
"homepage": "https://github.com/better-stack-ai/yar#readme",
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"dependencies": {
"rou3": "^0.7.5"
},
"devDependencies": {
"@biomejs/biome": "2.2.4",
"@types/react": "^19.1.16",
"@types/react-dom": "^19.1.9",
"tsup": "^8.5.0",
"typescript": "^5.9.2",
"vitest": "^3.2.4"
},
"peerDependencies": {
"@types/react": "^19.1.16",
"@types/react-dom": "^19.1.9"
},
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
}
}