-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.35 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.35 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
{
"name": "@bedrockio/router",
"version": "0.4.1",
"description": "A simpler browser router.",
"type": "module",
"scripts": {
"test": "jest",
"build": "tsc",
"lint": "eslint",
"eject": "scripts/eject",
"prepublish": "yarn build"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"contributors": [
{
"name": "Andrew Plummer",
"email": "andrew@rekall.ai"
}
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/bedrockio/router"
},
"dependencies": {
"path-to-regexp": "^8.2.0"
},
"peerDependencies": {
"react": ">=19",
"react-dom": ">=19"
},
"devDependencies": {
"@babel/core": "^7.28.4",
"@babel/preset-env": "^7.28.3",
"@babel/preset-react": "^7.27.1",
"@bedrockio/eslint-plugin": "^1.2.2",
"@bedrockio/prettier-config": "^1.1.1",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@types/react": "^19.2.2",
"@types/react-dom": "^19.2.1",
"eslint": "^9.37.0",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"prettier": "^3.6.2",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"typescript": "^5.9.3"
},
"prettier": "@bedrockio/prettier-config",
"volta": {
"node": "22.20.0",
"yarn": "1.22.22"
}
}