-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 2.98 KB
/
package.json
File metadata and controls
100 lines (100 loc) · 2.98 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
97
98
99
100
{
"name": "mobx-route",
"version": "1.1.1",
"scripts": {
"prepare": "pnpm dev:install-hooks",
"clean": "rimraf dist",
"lint:check": "pnpm exec biome check --write --no-errors-on-unmatched --files-ignore-unknown=true",
"ts:check": "tsc --noEmit",
"check": "npm run lint:check && npm run ts:check",
"prebuild": "npm run clean && npm run check",
"build:watch": "pnpm build && nodemon --watch src --ext ts --exec \"pnpm build\"",
"build": "vite build",
"pub": "pnpm build && sborshik publish --useDistDir",
"pub:patch": "PUBLISH_VERSION=patch pnpm pub",
"pub:minor": "PUBLISH_VERSION=minor pnpm pub",
"pub:major": "PUBLISH_VERSION=major pnpm pub",
"test": "vitest run --config vitest.config.ts",
"test:watch": "vitest watch --config vitest.config.ts",
"test:coverage": "vitest run --config vitest.config.ts --coverage",
"docs": "pnpm build && cd docs && pnpm dev",
"docs:install": "cd docs && pnpm i",
"docs:build": "cd docs && pnpm build",
"docs:serve": "cd docs && pnpm preview",
"dev": "pnpm test:watch",
"dev:install-hooks": "if [ -z \"$CI\" ]; then lefthook install; fi"
},
"keywords": [
"mobx",
"react",
"router",
"router",
"mobx-router",
"react-router-dom"
],
"author": "js2me",
"license": "MIT",
"description": "Simple and lightweight typed router",
"type": "module",
"bugs": {
"url": "https://github.com/js2me/mobx-route/issues"
},
"homepage": "https://js2me.github.io/mobx-route",
"repository": {
"type": "git",
"url": "git://github.com/js2me/mobx-route"
},
"dependencies": {
"mobx-location-history": "^9.4.0",
"path-to-regexp": "^8.4.2",
"yummies": "^7.19.4"
},
"peerDependencies": {
"mobx": "^6.12.4",
"mobx-react-lite": "^4.0.7",
"mobx-view-model": "^8.10.0 || ^9.0.0 || ^10.0.0",
"react": "^18.0.0 || ^19.0.0",
"react-dom": "^18.0.0 || ^19.0.0"
},
"peerDependenciesMeta": {
"mobx-view-model": {
"optional": true
},
"react": {
"optional": true
},
"mobx-react-lite": {
"optional": true
},
"react-dom": {
"optional": true
}
},
"pnpm": {
"overrides": {
"react-dom": "^19.0.0"
}
},
"devDependencies": {
"@biomejs/biome": "2.4.15",
"@changesets/changelog-github": "^0.5.2",
"@changesets/cli": "^2.31.0",
"@testing-library/react": "^16.3.2",
"@types/lodash-es": "^4.17.12",
"@types/node": "^20.19.41",
"@types/react": "^19.2.14",
"@vitejs/plugin-react-swc": "^3.11.0",
"@vitest/coverage-istanbul": "^4.1.6",
"commitfmt": "^1.0.4",
"js2me-biome-config": "^1.1.0",
"jsdom": "^29.1.1",
"lefthook": "^1.13.6",
"nodemon": "^3.1.14",
"rimraf": "^6.1.3",
"sborshik": "^3.5.0",
"typescript": "^6.0.3",
"vite": "^7.3.3",
"vitest": "^4.1.6"
},
"packageManager": "pnpm@9.5.0+sha512.140036830124618d624a2187b50d04289d5a087f326c9edfc0ccd733d76c4f52c3a313d4fc148794a2a9d81553016004e6742e8cf850670268a7387fc220c903"
}