-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
95 lines (95 loc) · 2.69 KB
/
package.json
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
{
"name": "use-fast-context",
"version": "1.0.3",
"description": "Optimized React Context utilities to prevent unnecessary re-renders, offering efficient state management with createContextStore and createStatePublisher.",
"keywords": [
"react",
"react context",
"context",
"useContext",
"createContext",
"useSyncExternalStore",
"optimized context",
"state management",
"react hooks",
"createContextStore",
"createStatePublisher",
"state",
"store",
"compound components",
"performance",
"fast context",
"react context optimization",
"react 18",
"efficient context",
"context re-renders",
"use-fast-context"
],
"homepage": "https://github.com/somewonderfulguy/use-fast-context",
"bugs": {
"url": "https://github.com/somewonderfulguy/use-fast-context/issues"
},
"author": "Dmitriy Yastrebov <[email protected]>",
"repository": {
"type": "git",
"url": "git+https://github.com/somewonderfulguy/use-fast-context.git"
},
"main": "dist/index.js",
"exports": {
"./package.json": "./package.json",
".": {
"import": "./dist/index.js",
"default": "./dist/index.cjs"
}
},
"files": [
"dist"
],
"type": "module",
"license": "MIT",
"scripts": {
"dev": "next dev --turbopack",
"build": "tsup",
"ci": "pnpm check-format && pnpm lint && pnpm test && pnpm build && pnpm check-exports",
"lint": "next lint",
"check-types": "tsc --project tsconfig.tsup.json",
"check-types:next": "tsc",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"format": "prettier --write .",
"check-format": "prettier --check .",
"check-exports": "attw --pack .",
"local-release": "changeset version && changeset publish",
"prepublish-only": "pnpm run ci"
},
"peerDependencies": {
"react": ">=18.0.0",
"react-dom": ">=18.0.0"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.17.0",
"@changesets/cli": "^2.27.10",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.0.1",
"@testing-library/user-event": "^14.5.2",
"@total-typescript/tsconfig": "^1.0.4",
"@types/jsdom": "^21.1.7",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@vitejs/plugin-react": "^4.3.3",
"@vitest/coverage-v8": "^2.1.5",
"eslint": "^8",
"eslint-config-next": "15.0.3",
"jsdom": "^25.0.1",
"next": "15.0.3",
"prettier": "^3.4.1",
"react": "19.0.0-rc-66855b96-20241106",
"react-dom": "19.0.0-rc-66855b96-20241106",
"tsup": "^8.3.5",
"typescript": "^5",
"vite-tsconfig-paths": "^5.1.2",
"vitest": "^2.1.5"
}
}