-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
70 lines (70 loc) · 1.7 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
66
67
68
69
70
{
"name": "type-route",
"version": "0.0.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"module": "dist/type-route.esm.js",
"description": "The flexible, type safe routing library.",
"repository": {
"type": "git",
"url": "git+https://github.com/zilch/type-route.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/zilch/type-route/issues"
},
"files": [
"dist",
"core",
"src"
],
"sideEffects": false,
"homepage": "https://type-route.zilch.dev",
"authors": [
"Braden Snell"
],
"keywords": [
"react",
"router",
"route",
"routing",
"history",
"link",
"type",
"types",
"typescript"
],
"scripts": {
"start": "parcel serve ./src/playground.html --dist-dir parcel-dist",
"build": "./build.sh",
"test": "tsdx test --coverage --collectCoverageFrom=src/**/*.ts --collectCoverageFrom=!src/global.d.ts",
"lint": "eslint --ext ts,tsx ./src ./test --max-warnings=0",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"devDependencies": {
"@types/jest": "^27.4.1",
"@types/lodash": "^4.14.191",
"@types/react": "^17.0.43",
"@types/react-dom": "^17.0.14",
"front-matter": "^4.0.2",
"lodash": "^4.17.21",
"parcel": "^2.10.3",
"prettier": "^2.6.1",
"process": "^0.11.10",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"rollup": "^2.70.1",
"rollup-plugin-dts": "^4.2.0",
"ts-toolbelt": "^9.6.0",
"tsdx": "^0.14.1",
"tslib": "^2.3.1",
"typescript": "^4.6.3",
"vitepress": "^1.0.0-alpha.33",
"vue": "^3.2.45"
},
"dependencies": {
"history": "^5.3.0"
}
}