This repository was archived by the owner on Sep 9, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.82 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.82 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
{
"name": "@zxlib/solid-router5",
"version": "0.0.1",
"description": "Router for solid-js based on router5 lib",
"author": "Aleksander V. Dyomin",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/zxlib/solid-router5"
},
"keywords": [
"typescript",
"solid-js",
"router",
"router5",
"solid-router",
"solid-router5"
],
"files": [
"dist/**/*",
"types/**/*"
],
"main": "dist/dom/index.cjs.js",
"module": "dist/dom/index.esm.js",
"typings": "types/index.d.js",
"scripts": {
"build": "npm run build:types && npm run build:js",
"build:js": "rm -rf dist && rollup -c",
"build:types": "tsc",
"watch": "concurrently --kill-others \"npm run watch:js\" \"npm run watch:types\"",
"watch:js": "rollup -cw",
"watch:types": "tsc -w",
"prettier": "prettier -c --write src",
"typedoc": "typedoc",
"lint": "eslint src/**/*{.ts,.tsx}",
"test": "echo \"Error: no test specified\" && exit 1"
},
"peerDependencies": {
"solid-js": "^0.18.11"
},
"dependencies": {
"router5": "^8.0.0"
},
"devDependencies": {
"@babel/core": "^7.10.3",
"@babel/preset-typescript": "^7.10.1",
"@rollup/plugin-typescript": "^5.0.1",
"@typescript-eslint/eslint-plugin": "^3.4.0",
"@typescript-eslint/parser": "^3.4.0",
"babel-preset-solid": "^0.18.11",
"concurrently": "^5.2.0",
"eslint": "^7.3.1",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.0",
"prettier": "^2.0.5",
"rollup": "^2.18.2",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-filesize": "^9.0.2",
"rollup-plugin-node-resolve": "^5.2.0",
"solid-js": "^0.18.11",
"typedoc": "^0.17.7",
"typescript": "^3.9.6"
}
}