-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.16 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.16 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "vite-plugin-remix-router",
"version": "2.0.0",
"description": "Remix style file-system routing for React and Vite",
"author": "Mohammad Ataei",
"license": "MIT",
"keywords": [
"vite-plugin",
"react-router",
"react",
"routes",
"router",
"vite"
],
"repository": {
"type": "git",
"url": "https://github.com/mammadataei/vite-plugin-remix-router/"
},
"bugs": {
"url": "https://github.com/mammadataei/vite-plugin-remix-router/issues"
},
"homepage": "https://vite-remix-router.vercel.app/",
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
},
"./client": {
"types": "./client.d.ts"
}
},
"files": [
"dist",
"client.d.ts"
],
"scripts": {
"build": "tsc && unbuild",
"test": "vitest --ui --open=false",
"example": "pnpm --filter example",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs",
"style": "prettier --write . && pnpm lint",
"lint": "eslint --ext .js,.jsx,.ts,.tsx .",
"prepare": "husky install",
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,ts,jsx,tsx}": "eslint --fix",
"*.{js,jsx,ts,tsx,md,html,css}": "prettier --write"
},
"peerDependencies": {
"react-router-dom": "^6.9.0",
"vite": ">=2"
},
"devDependencies": {
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@types/node": "^18.8.5",
"@typescript-eslint/eslint-plugin": "^5.40.0",
"@typescript-eslint/parser": "^5.40.0",
"@vitest/ui": "^0.25.0",
"eslint": "^8.25.0",
"eslint-config-prettier": "^8.5.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"prettier": "2.8.8",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.9.0",
"typescript": "^5.0.0",
"unbuild": "^1.0.0",
"vite": "^4.0.0",
"vitepress": "1.0.0-beta.3",
"vitest": "^0.25.0",
"vue": "^3.2.45"
},
"packageManager": "pnpm@8.11.0"
}