-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
77 lines (77 loc) · 1.62 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
{
"name": "make-route-path",
"version": "2.0.1",
"description": "Make type safe routes everywhere",
"module": "dist/make-route-path.esm.js",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"author": "Grigoriy Kolenko <[email protected]>",
"repository": "kolengri/make-route-path",
"keywords": [
"typescript",
"react-router",
"react-router-dom",
"routes",
"paths",
"next-router"
],
"files": [
"dist",
"src"
],
"scripts": {
"prepublish": "yarn test",
"start": "tsdx watch",
"build": "tsdx build",
"test": "tsdx test --collectCoverage",
"test:watch": "yarn test --watch",
"lint": "tsdx lint src",
"prepare": "tsdx build",
"size": "size-limit",
"analyze": "size-limit --why"
},
"devDependencies": {
"@size-limit/preset-small-lib": "^4.12.0",
"husky": "^5.1.3",
"rollup-plugin-filesize": "^9.1.2",
"size-limit": "^4.12.0",
"tsdx": "^0.14.1",
"tslib": "^2.4.1",
"typescript": "^4.8.4"
},
"resolutions": {
"tsdx/typescript": "^4.8.4"
},
"peerDependencies": {
"typescript": ">=4.8.0"
},
"engines": {
"node": ">=10"
},
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"size-limit": [
{
"path": "dist/make-route-path.cjs.production.min.js",
"limit": "10 KB"
},
{
"path": "dist/make-route-path.esm.js",
"limit": "10 KB"
}
],
"dependencies": {
"caniuse-lite": "^1.0.30001431",
"path-to-regexp": "^6.2.0"
}
}