-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 870 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 870 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
35
36
37
38
{
"name": "@shipyard-media/router",
"version": "1.1.0",
"description": "a simple router for react applications",
"main": "dist/index.js",
"files": ["/dist", "package.json", "README.md"],
"scripts": {
"clean": "rm -rf dist",
"build": "npm run clean && tsc"
},
"author": "toddsurfs",
"license": "MIT",
"dependencies": {},
"peerDependencies": {
"react": ">=18.2.0",
"react-dom": ">=18.2.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/toddw/router.git"
},
"keywords": [
"simple",
"react",
"router",
"react-router"
],
"bugs": {
"url": "https://github.com/toddw/router/issues"
},
"homepage": "https://github.com/toddw/router#readme",
"devDependencies": {
"@types/react": "^18.2.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"typescript": "^5.0.4"
}
}