-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 842 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 842 Bytes
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
{
"name": "@kibalabs/core-react",
"version": "0.10.0",
"description": "Utilities for use in React projects at Kiba Labs",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/kibalabs/core-react.git"
},
"homepage": "https://github.com/kibalabs/core-react",
"bugs": "https://github.com/kibalabs/core-react/issues",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"sideEffects": false,
"files": [
"dist/*"
],
"dependencies": {
"@kibalabs/core": "^0.7.1",
"react-is": "^19.2.4",
"react-router": "^7.13.0",
"react-router-dom": "^7.13.0"
},
"devDependencies": {
"@kibalabs/build": "0.14.1",
"@types/react": "19.2.10",
"@types/react-is": "19.2.0",
"react": "19.2.4"
},
"peerDependencies": {
"react": "^19.0.0"
}
}