-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
53 lines (53 loc) · 1.31 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
52
53
{
"name": "react-prokrutchik",
"version": "3.1.0",
"description": "React wrapper for Prokrutchik",
"scripts": {
"lint": "npx eslint src/**",
"build:css": "cp ./node_modules/prokrutchik/scroller.css ./react-scroller.css",
"build:js": "npx esbuild ./src --format=esm --loader:.js=jsx --outfile=react-scroller.js",
"build": "npm run build:css & npm run build:js",
"prebuild": "npm run lint",
"prepublish": "npm run build"
},
"keywords": [
"scroller",
"scroll",
"drag",
"drag-n-drop",
"react"
],
"type": "module",
"types": "react-scroller.d.ts",
"module": "react-scroller.js",
"exports": {
".": "./react-scroller.js",
"./package.json": "./package.json",
"./styles.css": "./react-scroller.css"
},
"files": [
"react-scroller.js",
"react-scroller.css",
"react-scroller.d.ts"
],
"engines": {
"node": ">=14.16"
},
"author": "Alex Bespoyasov <bespoyasov@me.com>",
"repository": "bespoyasov/react-scroller",
"license": "MIT",
"devDependencies": {
"esbuild": "^0.19.5",
"eslint": "^8.15.0",
"eslint-plugin-react": "^7.30.0",
"eslint-plugin-react-hooks": "^4.5.0"
},
"dependencies": {
"prokrutchik": "^3.0.1"
},
"peerDependencies": {
"prokrutchik": "^3.0.1",
"react": ">=16.8",
"react-dom": ">=16.8"
}
}