-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
69 lines (69 loc) · 1.97 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
{
"name": "solid-typefu-router5",
"version": "1.6.0",
"description": "Router5 based routing library for solid-js with TypeScript",
"repository": "https://github.com/mikeplus64/solid-typefu-router5",
"homepage": "https://mikeplus64.github.io/solid-typefu-router5/",
"author": "Mike Ledger <[email protected]>",
"license": "MIT",
"private": false,
"files": [
"dist",
"dist/",
"dist/index.js",
"dist/index.js.map",
"dist/index.es.js",
"dist/index.es.js.map",
"dist/index.d.ts",
"dist/index.d.ts.map",
"dist/context.d.ts",
"dist/context.d.ts.map",
"dist/components/Link.d.ts",
"dist/components/Link.d.ts.map",
"dist/components/MatchRoute.d.ts",
"dist/components/MatchRoute.d.ts.map",
"dist/components/RouteTree.d.ts",
"dist/components/RouteTree.d.ts.map",
"dist/types.d.ts",
"dist/types.d.ts.map",
"LICENSE",
"package.json",
".npmignore"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"module": "dist/index.es.js",
"devDependencies": {
"@babel/core": "^7.20.12",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6",
"@babel/plugin-proposal-optional-chaining": "^7.20.7",
"@babel/plugin-transform-runtime": "^7.19.6",
"@jest/types": "^27.5.1",
"@rollup/plugin-babel": "^5.3.1",
"@types/node": "^14.18.36",
"babel-preset-solid": "^1.6.9",
"dts-jest": "^24.0.0",
"rollup": "^2.79.1",
"rollup-plugin-typescript2": "^0.27.3",
"router5": "^8.0.1",
"solid-js": "^1.6.9",
"ts-jest": "^27.1.5",
"ts-node": "^10.9.1",
"typedoc": "^0.22.18",
"typescript": "^4.7.4"
},
"dependencies": {
"@babel/runtime": "^7.20.7",
"ts-toolbelt": "^9.6.0"
},
"peerDependencies": {
"router5": "*",
"solid-js": "^1.6.0"
},
"scripts": {
"prepare": "rm -r ./dist && rollup -c",
"docs": "typedoc --out docs --includeVersion ./src/index.tsx && touch docs/.nojekyll",
"bump": "./bump.sh",
"test": "jest"
}
}