-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.6 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.6 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
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "@blakeembrey/react-location",
"version": "2.0.1",
"publishConfig": {
"access": "public"
},
"description": "Light-weight and universal React.js routing",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git://github.com/blakeembrey/react-location.git"
},
"author": {
"name": "Blake Embrey",
"email": "hello@blakeembrey.com",
"url": "http://blakeembrey.me"
},
"homepage": "https://github.com/blakeembrey/react-location",
"bugs": {
"url": "https://github.com/blakeembrey/react-location/issues"
},
"type": "module",
"exports": "./dist/index.js",
"scripts": {
"build": "ts-scripts build",
"format": "ts-scripts format",
"lint": "ts-scripts lint",
"prepare": "ts-scripts install",
"prepublishOnly": "npm run build",
"size": "size-limit",
"specs": "ts-scripts specs",
"test": "ts-scripts test && npm run size"
},
"files": [
"dist/"
],
"keywords": [
"react",
"router",
"hash",
"history",
"push"
],
"peerDependencies": {
"react": "*"
},
"devDependencies": {
"@borderless/ts-scripts": "^0.13.6",
"@size-limit/preset-small-lib": "^7.0.8",
"@types/react": "^18.0.14",
"@types/react-dom": "^17.0.17",
"@vitejs/plugin-react": "^1.3.2",
"c8": "^7.11.3",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"size-limit": "^7.0.8",
"typescript": "^4.7.4"
},
"typings": "dist/index.d.ts",
"sideEffects": false,
"size-limit": [
{
"path": "dist/index.js",
"limit": "900 B"
}
],
"ts-scripts": {
"project": "tsconfig.build.json"
}
}