-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.22 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 2.22 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
{
"name": "mobx-wouter",
"version": "5.1.0",
"scripts": {
"clean": "rimraf dist",
"lint:check": "eslint . --fix",
"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 --delay 0.5 --watch src --ext ts,tsx --exec \"pnpm build\"",
"build": "tsc && node ./post-build.mjs",
"pub": "PUBLISH=true pnpm run build",
"prepublish": "pnpm test",
"pub:patch": "PUBLISH=true PUBLISH_VERSION=patch pnpm run build",
"pub:minor": "PUBLISH=true PUBLISH_VERSION=minor pnpm run build",
"pub:major": "PUBLISH=true PUBLISH_VERSION=major pnpm run build",
"test": "vitest run",
"test:watch": "vitest watch",
"test:coverage": "vitest run --coverage",
"dev": "pnpm test:watch"
},
"keywords": [
"mobx",
"react",
"wouter",
"router",
"react-router-dom"
],
"author": "js2me",
"license": "MIT",
"description": "",
"bugs": {
"url": "https://github.com/js2me/mobx-wouter/issues"
},
"homepage": "https://github.com/js2me/mobx-wouter",
"repository": {
"type": "git",
"url": "git://github.com/js2me/mobx-wouter"
},
"type": "module",
"dependencies": {
"mobx-location-history": "^7.2.0",
"react-simple-loadable": "^2.3.9",
"yummies": "^4.5.0"
},
"peerDependencies": {
"mobx": "^6.12.4",
"mobx-react-lite": "^4.0.7",
"mobx-view-model": "^6.14.3",
"react": "^18.3.1",
"wouter": "^3.3.5"
},
"peerDependenciesMeta": {
"mobx-view-model": {
"optional": true
}
},
"devDependencies": {
"@testing-library/react": "^16.1.0",
"@types/lodash-es": "^4.17.12",
"@types/node": "^20.17.12",
"@types/react": "^18.3.18",
"@vitejs/plugin-react-swc": "^3.7.2",
"@vitest/coverage-istanbul": "^2.1.8",
"eslint": "^8.57.1",
"js2me-eslint-config": "^1.0.7",
"js2me-exports-post-build-script": "^5.0.0",
"jsdom": "^25.0.1",
"nodemon": "^3.1.10",
"rimraf": "^6.0.1",
"typescript": "^5.7.3",
"vitest": "^2.1.8"
},
"packageManager": "pnpm@9.5.0+sha512.140036830124618d624a2187b50d04289d5a087f326c9edfc0ccd733d76c4f52c3a313d4fc148794a2a9d81553016004e6742e8cf850670268a7387fc220c903"
}