-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.09 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
{
"version": "0.2.3",
"license": "MIT",
"description": "React hooks for adapting to pointer type changes. The correct alternative to feature detection.",
"keywords": [
"react",
"pointer",
"pointer events",
"feature detection",
"touch",
"pen",
"mouse",
"input",
"device"
],
"repository": "AndrewPrifer/react-pointer-type",
"name": "react-pointer-type",
"type": "module",
"source": "src/index.ts",
"exports": "./dist/react-pointer-type.modern.js",
"main": "./dist/react-pointer-type.cjs",
"module": "./dist/react-pointer-type.module.js",
"unpkg": "./dist/react-pointer-type.umd.js",
"types": "./dist/index.d.ts",
"files": [
"dist",
"src"
],
"scripts": {
"build": "microbundle",
"dev": "microbundle watch",
"build:example": "cd example && yarn build"
},
"devDependencies": {
"@types/react": "^17.0.19",
"@types/react-dom": "^17.0.9",
"microbundle": "^0.13.3",
"np": "^7.5.0",
"prettier": "^2.3.2",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"peerDependencies": {
"react": "^17.0.2"
}
}