-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.68 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "react-corsair",
"version": "0.0.4",
"description": "Because routes are better then URLs.",
"main": "./index.js",
"module": "./index.mjs",
"types": "./index.d.ts",
"exports": {
".": {
"types": "./index.d.ts",
"import": "./index.mjs",
"require": "./index.js"
},
"./package.json": "./package.json"
},
"sideEffects": false,
"scripts": {
"build": "rollup --config && cp package.json README.md LICENSE.txt lib/ && cd lib && npm pkg delete scripts devDependencies",
"clean": "rimraf lib docs coverage",
"test": "jest",
"docs": "typedoc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/smikhalevski/react-corsair.git"
},
"keywords": [
"url",
"path",
"route",
"router"
],
"author": "Savva Mikhalevski <smikhalevski@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/smikhalevski/react-corsair/issues"
},
"homepage": "https://github.com/smikhalevski/react-corsair#readme",
"devDependencies": {
"@rollup/plugin-typescript": "^11.1.6",
"@testing-library/jest-dom": "^6.4.8",
"@testing-library/react": "^16.0.0",
"@types/jest": "^29.5.12",
"@types/jsdom": "^21.1.7",
"@types/react": "^18.3.3",
"jest": "^29.7.0",
"jsdom": "^24.1.1",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"rollup": "^4.20.0",
"ts-jest": "^29.2.4",
"tslib": "^2.6.3",
"typedoc": "^0.26.5",
"typedoc-custom-css": "github:smikhalevski/typedoc-custom-css#master",
"typedoc-plugin-mdn-links": "^3.2.8",
"typescript": "^5.5.4"
},
"peerDependencies": {
"react": ">=18.0.0"
},
"dependencies": {
"parallel-universe": "^6.1.1"
}
}