-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.66 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
{
"version": "0.7.0",
"type": "module",
"types": "./dist/types/index.d.ts",
"main": "./dist/cjs/production/index.cjs",
"module": "./dist/esm/production/index.mjs",
"exports": {
".": {
"development": {
"require": "./dist/cjs/development/index.cjs",
"import": "./dist/esm/development/index.mjs"
},
"require": "./dist/cjs/production/index.cjs",
"import": "./dist/esm/production/index.mjs",
"types": "./dist/types/index.d.ts"
}
},
"files": [
"dist",
"src"
],
"engines": {
"node": ">=10"
},
"scripts": {
"prepublish": "pridepack clean && pridepack build",
"build": "pridepack build",
"type-check": "pridepack check",
"lint": "pridepack lint",
"clean": "pridepack clean",
"watch": "pridepack watch"
},
"license": "MIT",
"name": "@lyonph/react-hooks",
"devDependencies": {
"@types/node": "^18.7.3",
"@types/react": "^18.0.17",
"eslint": "^8.22.0",
"eslint-config-lxsmnsyc": "^0.4.8",
"pridepack": "^2.3.0",
"react": "^18.2.0",
"tslib": "^2.4.0",
"typescript": "^4.7.4"
},
"peerDependencies": {
"react": "^16.8 || ^17.0 || ^18.0"
},
"description": "Collection of useful React Hooks",
"repository": "https://github.com/LyonInc/react-hooks.git",
"homepage": "https://github.com/LyonInc/react-hooks",
"bugs": {
"url": "https://github.com/LyonInc/react-hooks/issues"
},
"publishConfig": {
"access": "public"
},
"author": "Lyon Software Technologies, Inc. <[email protected]>",
"private": false,
"keywords": [
"pridepack",
"react-hooks",
"react",
"hooks"
],
"typesVersions": {
"*": {}
}
}