-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (64 loc) · 1.47 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
65
{
"name": "@fabiulous/routing",
"description": "Generates a typed routing mechanist based on a config",
"private": false,
"version": "0.1.9",
"type": "module",
"files": [
"dist"
],
"main": "./dist/routing.umd.cjs",
"module": "./dist/routing.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/routing.js",
"require": "./dist/routing.umd.cjs"
}
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"test": "vitest",
"ts": "tsc -p ./tsconfig.json",
"coverage": "vitest run --coverage"
},
"devDependencies": {
"@testing-library/react": "^14.0.0",
"@types/react": "^18.2.14",
"@vitejs/plugin-react": "^4.0.1",
"@vitest/coverage-v8": "^0.33.0",
"happy-dom": "^10.1.1",
"pathe": "^1.1.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"typescript": "^5.0.2",
"vite": "^4.3.9",
"vite-plugin-dts": "^3.1.0",
"vite-plugin-static-copy": "^0.16.0",
"vitest": "^0.33.0"
},
"dependencies": {
"query-string": "8.1.0",
"react-use": "17.4.0"
},
"peerDependencies": {
"react": "^18.2.0"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/fabiulous/routing.git"
},
"author": "Fabio Santos",
"license": "ISC",
"bugs": {
"url": "https://github.com/fabiulous/routing/issues"
},
"homepage": "https://github.com/fabiulous/routing",
"keywords": [
"routing",
"typescript",
"react",
"router"
]
}