-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.17 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.17 KB
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
{
"name": "current-input",
"version": "2.0.0",
"description": "Detect the current input (mouse or touch) and fix the sticky :hover bug on touch devices.",
"main": "dist/current-input.cjs.js",
"module": "dist/current-input.esm.js",
"types": "dist/index.d.ts",
"sideEffects": true,
"scripts": {
"build": "rollpkg build --addUmdBuild",
"watch": "rollpkg watch",
"prepublishOnly": "npm run build",
"start:demo": "npx live-server ./docs"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/rafgraph/current-input.git"
},
"keywords": [
"hover",
"active",
"mouse",
"touch"
],
"author": "Rafael Pedicini <rafael@rafgraph.dev>",
"license": "MIT",
"bugs": {
"url": "https://github.com/rafgraph/current-input/issues"
},
"homepage": "https://github.com/rafgraph/current-input#readme",
"dependencies": {
"detect-it": "^4.0.1",
"event-from": "^1.0.0"
},
"devDependencies": {
"rollpkg": "^0.5.6",
"typescript": "^4.2.4"
},
"prettier": "rollpkg/configs/prettier.json",
"eslintConfig": {
"extends": [
"./node_modules/rollpkg/configs/eslint"
]
}
}