forked from homielab/react-native-auto-scroll
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.01 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
{
"name": "@homielab/react-native-auto-scroll",
"version": "0.0.8",
"description": "Auto horizontal scroll any component",
"main": "./lib/cjs/index.js",
"module": "./lib/esm/index.js",
"types": "./lib/esm/index.d.ts",
"scripts": {
"build": "npm run build:esm && npm run build:cjs",
"build:esm": "tsc",
"build:cjs": "tsc --module commonjs --outDir lib/cjs",
"test": "echo \"Error: no test specified\""
},
"files": [
"/lib"
],
"author": {
"name": "HomieLab",
"url": "https://github.com/homielab"
},
"repository": {
"type": "git",
"url": "https://github.com/homielab/react-native-auto-scroll.git"
},
"license": "ISC",
"keywords": [
"react",
"reactjs",
"react-native",
"scrolling",
"auto-scroll",
"auto-scrolling",
"performance",
"marquee"
],
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"devDependencies": {
"@types/react": "^17.0.38",
"@types/react-native": "^0.66.11",
"typescript": "^4.5.4"
}
}