-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
45 lines (45 loc) · 1.18 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
{
"name": "react-facade",
"description": "A simple library that uses Proxy and TypeScript to create a strongly typed facade for your React hooks.",
"version": "0.5.0",
"main": "build/index.js",
"module": "build/index.mjs",
"types": "build/index.d.ts",
"license": "MIT",
"author": "Gabe Scholz <[email protected]>",
"homepage": "https://github.com/garbles/react-facade",
"files": [
"build",
"src",
"LICENSE",
"README.md"
],
"peerDependencies": {
"react": "^18.2.0"
},
"dependencies": {
"invariant": "^2.2.4"
},
"devDependencies": {
"@testing-library/react": "^13.4.0",
"@types/invariant": "^2.2.35",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.10",
"happy-dom": "^8.1.1",
"npm-check-updates": "^16.6.2",
"npm-run-all": "^4.1.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tsup": "^6.5.0",
"typescript": "^4.9.4",
"vite": "^4.0.3",
"vitest": "^0.26.2"
},
"scripts": {
"test": "vitest",
"build": "tsup src/index.ts --clean --outDir build --dts --sourcemap --format esm,cjs",
"typecheck": "tsc",
"prepublishOnly": "run-s test typecheck build",
"bump": "ncu -u"
}
}