-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.95 KB
/
Copy pathpackage.json
File metadata and controls
96 lines (96 loc) · 2.95 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
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "routeveil",
"version": "0.4.1",
"license": "MIT",
"description": "Open-source React and TypeScript transition engine for React Router.",
"keywords": [
"react",
"react-router",
"page-transitions",
"route-transitions",
"animation",
"react-router-transitions",
"react-router-animation"
],
"author": {
"name": "Gleb",
"url": "https://github.com/milkevich"
},
"homepage": "https://www.routeveil.dev",
"repository": {
"type": "git",
"url": "git+https://github.com/milkevich/routeveil.git"
},
"bugs": {
"url": "https://github.com/milkevich/routeveil/issues"
},
"type": "module",
"sideEffects": false,
"files": [
"dist/react-router.js",
"dist/types",
"README.md"
],
"exports": {
"./react-router": {
"types": "./dist/types/react-router/index.d.ts",
"import": "./dist/react-router.js",
"default": "./dist/react-router.js"
}
},
"publishConfig": {
"access": "public"
},
"scripts": {
"dev": "vite",
"check:comments": "node scripts/check-comments.mjs",
"check:package": "node scripts/check-comments.mjs && node scripts/check-package.mjs",
"typecheck": "tsc -b",
"build:lib": "vite build --config vite.lib.config.ts && tsc -p tsconfig.lib.json",
"build:demo": "vite build && node --import tsx scripts/generate-seo-pages.ts",
"build": "npm run typecheck && npm run build:lib && npm run build:demo",
"generate:sitemap": "node --import tsx scripts/generate-sitemap.ts",
"lint": "eslint .",
"lint:package": "publint --pack false --strict",
"test": "vitest run",
"test:compat": "npm run build:lib && node scripts/run-compatibility.mjs",
"test:consumer": "npm run build:lib && tsc -p tests/consumer/tsconfig.json && npm run check:package && npm run lint:package",
"test:watch": "vitest",
"preview": "vite preview",
"check": "npm run check:comments && npm run lint && npm run typecheck && npm test && npm run test:consumer",
"prepack": "npm run check"
},
"peerDependencies": {
"react": "^18.0.0 || ^19.0.0",
"react-dom": "^18.0.0 || ^19.0.0",
"react-router-dom": "^6.27.0 || ^7.0.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@shikijs/langs": "^4.3.1",
"@shikijs/themes": "^4.3.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/node": "^24.13.2",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.3",
"eslint": "^10.6.0",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-react-refresh": "^0.5.3",
"globals": "^17.7.0",
"jsdom": "^29.1.1",
"lucide-react": "^1.25.0",
"publint": "^0.3.21",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"react-router-dom": "^7.18.1",
"shiki": "^4.3.1",
"terser": "^5.49.0",
"tsx": "^4.23.1",
"typescript": "~6.0.2",
"typescript-eslint": "^8.62.0",
"vite": "^8.1.1",
"vitest": "^4.1.10"
}
}