-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
102 lines (102 loc) · 2.54 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "yarr",
"version": "3.0.0",
"license": "MIT",
"packageManager": "pnpm@8.5.1",
"publishConfig": {
"access": "public"
},
"author": "Eric Taylor <eric@daxos.com> (https://github.com/erictaylor)",
"description": "Yet another React Router.",
"repository": {
"type": "git",
"url": "git+https://github.com/erictaylor/yarr.git"
},
"homepage": "https://github.com/erictaylor/yarr#readme",
"bugs": "https://github.com/erictaylor/yarr/issues",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js",
"default": "./dist/index.js"
}
},
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist/*.mjs",
"dist/*.mjs.map",
"dist/*.js",
"dist/*.js.map",
"dist/*.d.ts"
],
"engines": {
"node": ">=16"
},
"keywords": [
"react",
"router",
"concurrent",
"route",
"routing",
"preloading",
"prefetching",
"relay",
"suspense",
"render-as-you-fetch"
],
"scripts": {
"build": "pnpm run build:lib && pnpm run build:dts",
"build:dts": "tsc --project tsconfig.dts.json",
"build:lib": "node bin/build.mjs",
"format": "rome format --write ./",
"lint": "rome check ./",
"prepublishOnly": "pnpm run build",
"size": "size-limit",
"size:analyze": "size-limit --why",
"test": "pnpm run test:rome && pnpm run test:tsc && pnpm run test:vitest run",
"test:rome": "rome ci ./src",
"test:tsc": "tsc --noEmit",
"test:vitest": "vitest"
},
"peerDependencies": {
"react": ">=16.14.0"
},
"size-limit": [
{
"path": "dist/index.js",
"limit": "10 kB"
},
{
"path": "dist/index.mjs",
"limit": "10 kB"
}
],
"devDependencies": {
"@commitlint/cli": "^17.6.5",
"@commitlint/config-conventional": "^17.6.5",
"@size-limit/preset-small-lib": "^8.2.4",
"@skypack/package-check": "^0.2.2",
"@testing-library/react": "^14.0.0",
"@testing-library/react-hooks": "^8.0.1",
"@testing-library/user-event": "^14.4.3",
"@types/node": "^20.2.5",
"@types/react": "^18.2.8",
"@types/react-dom": "^18.2.4",
"@vitest/coverage-istanbul": "^0.31.4",
"esbuild": "^0.17.19",
"husky": "^8.0.3",
"jsdom": "^22.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rome": "^12.1.3",
"semantic-release": "^21.0.2",
"size-limit": "^8.2.4",
"typescript": "^5.1.3",
"vitest": "^0.31.4",
"vitest-dom": "^0.1.0"
},
"sideEffects": false
}