-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 1.97 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
{
"name": "react-typesafe-routes",
"version": "2.0.0-alpha.0",
"description": "The last routing library you will ever need in your react projects - Completely typesafe and easy to use.",
"keywords": [
"typesafe-routing",
"routing",
"route-options",
"route-middleware",
"react-router",
"react",
"react-router-dom"
],
"license": "MIT",
"author": "Nicolas Schlecker ([email protected])",
"main": "dist/index.js",
"module": "dist/react-typesafe-routes.esm.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"scripts": {
"analyze": "size-limit --why",
"build": "tsdx build",
"lint": "tsdx lint",
"prepare": "tsdx build",
"doc:build": "typedoc src/index.ts",
"doc:deploy": "yarn doc:build && gh-pages -d docs",
"size": "size-limit",
"start": "tsdx watch",
"test": "tsdx test"
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"resolutions": {
"**/typescript": "^4.1.6"
},
"devDependencies": {
"@size-limit/preset-small-lib": "^8.1.0",
"@types/qs": "^6.9.7",
"@types/react": "^18.0.25",
"@types/react-dom": "^18.0.8",
"@typescript-eslint/eslint-plugin": "^5.42.1",
"@typescript-eslint/parser": "^5.42.1",
"eslint": "^8.27.0",
"gh-pages": "^4.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.4.2",
"size-limit": "^8.1.0",
"tsdx": "^0.14.1",
"tslib": "^2.4.1",
"typedoc": "^0.23.20",
"typescript": "^4.8.4"
},
"peerDependencies": {
"react": ">=18",
"react-dom": ">=18",
"react-router-dom": "^6.4.2",
"typescript": "^4.1.6"
},
"engines": {
"node": ">=14"
},
"size-limit": [
{
"path": "dist/react-typesafe-routes.cjs.production.min.js",
"limit": "15 KB"
},
{
"path": "dist/react-typesafe-routes.esm.js",
"limit": "15 KB"
}
],
"dependencies": {
"qs": "^6.11.0"
}
}