-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.67 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.67 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
{
"name": "mobx-tanstack-query",
"version": "6.16.0",
"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 && npm run test:types",
"prebuild": "npm run clean && npm run check",
"build:watch": "pnpm build && nodemon --watch src --ext ts,tsx --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",
"test:types": "tsc --noEmit --project tsconfig.test.json",
"test:watch": "vitest watch",
"test:coverage": "vitest run --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",
"tanstack",
"tanstack-query",
"query",
"mutation"
],
"author": "js2me",
"license": "MIT",
"description": "MobX wrappers for Tanstack Query (Core)",
"bugs": {
"url": "https://github.com/js2me/mobx-tanstack-query/issues"
},
"homepage": "https://js2me.github.io/mobx-tanstack-query/introduction/getting-started",
"repository": {
"type": "git",
"url": "git://github.com/js2me/mobx-tanstack-query"
},
"type": "module",
"peerDependencies": {
"@tanstack/query-core": "^5.90.2",
"mobx": "^6.12.4"
},
"dependencies": {
"linked-abort-controller": "^1.1.1",
"yummies": "^7.16.2"
},
"devDependencies": {
"@biomejs/biome": "^2.4.11",
"@changesets/changelog-github": "^0.6.0",
"@changesets/cli": "^2.30.0",
"@testing-library/react": "^16.3.2",
"@types/lodash-es": "^4.17.12",
"@types/node": "^20.19.39",
"@types/react": "^18.3.28",
"@vitejs/plugin-react-swc": "^4.3.0",
"@vitest/coverage-istanbul": "^4.1.4",
"commitfmt": "^1.0.4",
"js2me-biome-config": "^1.1.0",
"jsdom": "^29.0.2",
"lefthook": "^1.13.6",
"nodemon": "^3.1.14",
"rimraf": "^6.1.3",
"sborshik": "^3.0.7",
"terser": "^5.46.1",
"tsx": "^4.21.0",
"typescript": "^6.0.2",
"vite": "^8.0.8",
"vite-plugin-dts": "^4.5.4",
"vitest": "^4.1.4"
},
"packageManager": "pnpm@9.5.0+sha512.140036830124618d624a2187b50d04289d5a087f326c9edfc0ccd733d76c4f52c3a313d4fc148794a2a9d81553016004e6742e8cf850670268a7387fc220c903"
}