-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.15 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
{
"name": "router-dom",
"version": "3.0.1",
"description": "A lightweight router for everyone",
"type": "module",
"main": "dist/router.js",
"module": "dist/router.js",
"types": "./dist/router.d.ts",
"exports": {
"import": "./dist/router.js",
"default": "./dist/router.js"
},
"keywords": [
"router",
"routing",
"javascript",
"history",
"link"
],
"scripts": {
"start": "tsc",
"update": "npx npm-check-updates -u && npx typesync && npm i && npm outdated",
"test": "tsc && wtr src/tests/*.html --node-resolve --playwright --browsers chromium firefox webkit"
},
"author": "Fabian Klingenberg <[email protected]> (https://klingenberg.netlify.app/)",
"license": "MIT",
"devDependencies": {
"@esm-bundle/chai": "^4.3.4",
"@web/test-runner": "^0.19.0",
"@web/test-runner-playwright": "^0.11.0",
"esbuild": "^0.24.0",
"typescript": "^5.6.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Krutsch/router-dom.git"
},
"bugs": "https://github.com/Krutsch/router-dom/issues",
"dependencies": {
"hydro-js": "^1.5.21",
"path-to-regexp": "6.3.0"
}
}