-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
46 lines (46 loc) · 1.18 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
{
"name": "react-scrubber",
"version": "2.1.0",
"description": "React scrubber component with touch controls, styling, and lots event handlers",
"main": "./lib/index.js",
"scripts": {
"build": "tsc",
"postbuild": "node postbuild.js",
"prepublish": "npm run build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/nick-michael/react-scrubber.git"
},
"keywords": [
"react",
"react-component",
"slider",
"scrubber",
"input",
"range"
],
"author": "nick-michael",
"license": "MIT",
"bugs": {
"url": "https://github.com/nick-michael/react-scrubber/issues"
},
"files": [
"lib"
],
"homepage": "https://github.com/nick-michael/react-scrubber#readme",
"devDependencies": {
"@types/react": "19.0.0",
"react": "19.0.0",
"react-dom": "19.0.0",
"typescript": "^5.7.2"
},
"peerDependencies": {
"react": "16 - 19",
"react-dom": "16 - 19"
},
"dependencies": {
"object.fromentries": "^2.0.0"
}
}