-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.6 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.6 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
{
"name": "@budarin/use-route",
"version": "1.6.1",
"description": "Infrastructure React hook for SPA routing. Navigation API + URLPattern. No providers, no context.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./testing": {
"types": "./dist/testing.d.ts",
"import": "./dist/testing.js"
}
},
"type": "module",
"keywords": [
"router",
"infrastructure",
"clean-architecture",
"navigation-api"
],
"author": "Vadim Budarin",
"license": "MIT",
"devDependencies": {
"@eslint/js": "^10.0.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/react": "^19.2.14",
"@vitest/ui": "^4.0.18",
"eslint": "^10.0.0",
"globals": "^17.3.0",
"jsdom": "^28.1.0",
"prettier": "^3.8.1",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"typescript": "^5.7.3",
"typescript-eslint": "^8.56.0",
"urlpattern-polyfill": "^10.1.0",
"vitest": "^4.0.18"
},
"scripts": {
"build": "tsc",
"type-check": "tsc -build --noEmit",
"lint": "eslint . && prettier --check .",
"test": "vitest",
"test:ui": "vitest --ui",
"test:run": "vitest run",
"pnpm-install": "pnpm install",
"upgrade-deps": "sh scripts/upgrade-deps.sh",
"publish-package": "pnpm build && pnpm publish --access=public"
}
}