-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
47 lines (47 loc) · 1.24 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
{
"name": "use-caret-position",
"version": "0.0.2",
"description": "A custom React hook for grabbing the caret position in an input field",
"main": "dist/use-caret-position.min.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"package": "rollup --config rollup.config.js",
"dev": "rollup --config rollup.config.js -w",
"prepublish": "rollup --config rollup.config.js",
"prepack": "rollup --config rollup.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jh3y/use-caret-position.git"
},
"keywords": [
"caret",
"input",
"react",
"hook",
"custom",
"position",
"css",
"layout",
"cursor"
],
"author": "jh3y <users@noreply.github.com>",
"license": "MIT",
"files": [
"dist"
],
"bugs": {
"url": "https://github.com/jh3y/use-caret-position/issues"
},
"homepage": "https://github.com/jh3y/use-caret-position#readme",
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/preset-env": "^7.12.1",
"@rollup/plugin-babel": "^5.2.1",
"@rollup/plugin-commonjs": "^16.0.0",
"@rollup/plugin-node-resolve": "^10.0.0",
"rollup": "^2.32.1",
"rollup-plugin-terser": "^7.0.2"
},
"dependencies": {}
}