-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.62 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
{
"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"
},
"license": "MIT",
"keywords": [
"pridepack",
"preact-hooks",
"preact",
"hooks"
],
"name": "@lyonph/preact-hooks",
"devDependencies": {
"@types/node": "^18.7.3",
"eslint": "^8.22.0",
"eslint-config-lxsmnsyc": "^0.4.8",
"preact": "^10.7.2",
"pridepack": "^2.3.0",
"tslib": "^2.4.0",
"typescript": "^4.7.4"
},
"peerDependencies": {
"preact": "^10.0"
},
"scripts": {
"prepublish": "pridepack clean && pridepack build",
"build": "pridepack build",
"type-check": "pridepack check",
"lint": "pridepack lint",
"clean": "pridepack clean",
"watch": "pridepack watch"
},
"description": "Collection of useful Preact Hooks",
"repository": "https://github.com/LyonInc/preact-hooks.git",
"homepage": "https://github.com/LyonInc/preact-hooks",
"bugs": {
"url": "https://github.com/LyonInc/preact-hooks/issues"
},
"publishConfig": {
"access": "public"
},
"author": "Lyon Software Technologies, Inc. <[email protected]>",
"private": false,
"typesVersions": {
"*": {}
}
}