-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
62 lines (62 loc) · 1.67 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
{
"name": "react-hookers",
"version": "6.1.0",
"description": "The set of general-purpose React hooks.",
"main": "./index.js",
"module": "./index.mjs",
"types": "./index.d.ts",
"exports": {
".": {
"types": "./index.d.ts",
"import": "./index.mjs",
"require": "./index.js"
},
"./package.json": "./package.json"
},
"sideEffects": false,
"scripts": {
"build": "rollup --config && cp package.json README.md LICENSE.txt lib/ && cd lib && npm pkg delete scripts devDependencies",
"clean": "rimraf lib docs coverage",
"test": "jest",
"docs": "typedoc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/smikhalevski/react-hookers.git"
},
"keywords": [
"react",
"hooks"
],
"author": "Savva Mikhalevski <smikhalevski@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/smikhalevski/react-hookers/issues"
},
"homepage": "https://github.com/smikhalevski/react-hookers#readme",
"devDependencies": {
"@rollup/plugin-typescript": "^12.1.1",
"@swc/core": "^1.7.36",
"@swc/jest": "^0.2.36",
"@testing-library/react": "^16.0.1",
"@types/jest": "^29.5.13",
"@types/react": "^18.3.11",
"@types/react-dom": "^18.3.1",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"rollup": "^4.24.0",
"tslib": "^2.8.0",
"typedoc": "^0.26.10",
"typedoc-custom-css": "github:smikhalevski/typedoc-custom-css#master",
"typedoc-plugin-mdn-links": "^3.3.4",
"typescript": "^5.6.3"
},
"peerDependencies": {
"react": "^18.0.0"
},
"dependencies": {
"parallel-universe": "^6.1.1"
}
}