-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (51 loc) · 1.12 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
{
"name": "@tpguy825/clicker",
"version": "1.1.0",
"description": "Mouse event helper library for React",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.js"
},
"./preact": {
"import": "./dist/preact/index.js",
"require": "./dist/preact/index.js"
},
"./dist/index.js": "./dist/index.js",
"./dist/index.d.ts": "./dist/index.d.ts",
"./dist/preact/index.js": "./dist/preact/index.js",
"./dist/preact/index.d.ts": "./dist/preact/index.d.ts"
},
"repository": {
"type": "git",
"url": "https://github.com/tpguy825/clicker.git"
},
"author": "tpguy825",
"license": "ISC",
"bugs": {
"url": "https://github.com/tpguy825/clicker/issues"
},
"scripts": {
"build": "tsc -p tsconfig.json"
},
"packageManager": "[email protected]",
"homepage": "https://github.com/tpguy825/clicker#readme",
"devDependencies": {
"@types/node": "^20.5.6",
"@types/react": "^18.2.21",
"typescript": "^5.2.2"
},
"dependencies": {
"preact": "^10.17.1",
"react": "^18.2.0"
},
"keywords": [
"react",
"mouse",
"click",
"event",
"hook"
]
}