-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
115 lines (115 loc) · 3.03 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "react-routeways",
"version": "0.0.0",
"description": "Use ts-routeways and react-router-dom together",
"repository": "git@github.com:JoseLion/react-routeways.git",
"homepage": "https://joselion.github.io/react-routeways/",
"bugs": "https://github.com/JoseLion/react-routeways/issues",
"author": "Jose Luis Leon <joseluis5000l@gmail.com> (https://github.com/JoseLion)",
"license": "MIT",
"keywords": [
"codecs",
"hooks",
"query-params",
"react",
"routes",
"routing",
"routeways",
"ts-routeways",
"typesafe",
"typescript"
],
"type": "module",
"source": "./src/main.ts",
"main": "./dist/main.cjs",
"module": "./dist/main.js",
"types": "./dist/main.d.ts",
"sideEffects": false,
"exports": {
".": {
"import": "./dist/main.js",
"require": "./dist/main.cjs",
"types": "./dist/main.d.ts",
"default": "./dist/main.js"
},
"./package.json": "./package.json"
},
"files": [
"./dist",
"./src",
"./package.json"
],
"engines": {
"node": ">=18"
},
"scripts": {
"build": "vite build",
"check": "yarn compile && yarn lint && yarn test --run",
"compile": "tsc",
"docs": "typedoc",
"lint": "eslint .",
"release": "semantic-release",
"test": "NODE_ENV=test vitest"
},
"packageManager": "yarn@4.3.0",
"devDependencies": {
"@assertive-ts/core": "^2.1.0",
"@eslint/compat": "^1.1.0",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.5.0",
"@stylistic/eslint-plugin": "^2.2.2",
"@testing-library/dom": "^10.1.0",
"@testing-library/react": "^16.0.0",
"@testing-library/user-event": "^14.5.2",
"@types/eslint__eslintrc": "^2.1.1",
"@types/eslint__js": "^8.42.3",
"@types/node": "^20.14.8",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"eslint": "^9.5.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-deprecation": "^3.0.0",
"eslint-plugin-etc": "^2.0.3",
"eslint-plugin-extra-rules": "^0.0.0-development",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsdoc": "^48.2.13",
"eslint-plugin-react": "^7.34.3",
"eslint-plugin-sonarjs": "^1.0.3",
"jsdom": "^24.1.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.23.1",
"semantic-release": "^24.0.0",
"semantic-release-yarn": "^3.0.2",
"ts-routeways": "^2.0.2",
"tslib": "^2.6.3",
"typedoc": "^0.26.1",
"typedoc-plugin-markdown": "^4.1.0",
"typedoc-plugin-merge-modules": "^5.1.0",
"typescript": "^5.5.2",
"typescript-eslint": "^7.13.1",
"vite": "^5.3.1",
"vite-plugin-dts": "^3.9.1",
"vitest": "^1.6.0"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0",
"react-router-dom": ">=6.0.0",
"ts-routeways": ">=1.4.7"
},
"peerDependenciesMeta": {
"react": {
"optional": false
},
"react-dom": {
"optional": false
},
"react-router-dom": {
"optional": false
},
"ts-routeways": {
"optional": false
}
}
}