-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.34 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.34 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
{
"name": "react-grapple",
"version": "1.6.0",
"description": "A collection of useful hooks that I made.",
"homepage": "https://github.com/KoenBrouwer/react-grapple#readme",
"bugs": {
"url": "https://github.com/KoenBrouwer/react-grapple/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/KoenBrouwer/react-grapple.git"
},
"license": "MIT",
"author": {
"name": "Koen Brouwer",
"url": "https://github.com/koenbrouwer"
},
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts",
"lint": "tsc && eslint",
"test": "jest"
},
"devDependencies": {
"@changesets/cli": "^2.26.0",
"@testing-library/react": "^14.0.0",
"@types/jest": "^29.4.0",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@typescript-eslint/eslint-plugin": "^5.54.1",
"@typescript-eslint/parser": "^5.54.1",
"eslint": "^8.36.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"ts-jest": "^29.0.5",
"tsup": "^6.6.3",
"typescript": "^4.9.5"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
}
}