-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.55 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.55 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
{
"name": "react-batcher",
"version": "1.0.0",
"type": "module",
"packageManager": "pnpm@9.0.0",
"description": "A generic React library for batching API requests with external store synchronization",
"scripts": {
"build": "pnpm --filter \"@react-batcher/core\" build",
"dev": "pnpm --filter \"@react-batcher/core\" dev",
"test": "vitest",
"test:watch": "vitest --watch",
"test:ui": "vitest --ui",
"clean": "pnpm --filter \"@react-batcher/core\" exec rm -rf dist node_modules",
"example:basic": "pnpm --filter \"@react-batcher/example-basic\" dev",
"example:flush": "pnpm --filter \"@react-batcher/example-flush-demo\" dev",
"example:state": "pnpm --filter \"@react-batcher/example-state-management\" dev",
"typecheck": "tsc --noEmit",
"format": "prettier --write \"**/*.{ts,tsx,md,json}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,md,json}\"",
"prepublish": "pnpm build",
"release:patch": "cd packages/react-batcher && npm version patch && npm publish",
"release:minor": "cd packages/react-batcher && npm version minor && npm publish",
"release:major": "cd packages/react-batcher && npm version major && npm publish"
},
"keywords": [
"react",
"batching",
"api",
"store",
"useSyncExternalStore",
"monorepo"
],
"author": "",
"license": "MIT",
"devDependencies": {
"@vitest/ui": "^2.0.0",
"prettier": "^3.0.0",
"typescript": "^5.0.0",
"vite": "^5.3.1",
"vitest": "^2.0.0"
},
"pnpm": {
"overrides": {
"typescript": "^5.0.0"
}
}
}