-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
61 lines (61 loc) · 1.66 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
54
55
56
57
58
59
60
61
{
"name": "react-infinite-ticker",
"version": "2.2.0",
"description": "React component that scrolls children infinitely",
"files": [
"dist",
"README.md",
"LICENSE"
],
"repository": {
"type": "git",
"url": "https://github.com/g12i/react-infinite-ticker"
},
"homepage": "https://g12i.github.io/react-infinite-ticker/",
"main": "./dist/react-infinite-ticker.umd.js",
"module": "./dist/react-infinite-ticker.es.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/react-infinite-ticker.es.js",
"require": "./dist/react-infinite-ticker.umd.js"
}
},
"scripts": {
"dev": "vite --config vite.demo.config.js",
"build:demo": "vite build --config vite.demo.config.js && gh-pages -d demo/dist",
"build": "vite build && tsc --emitDeclarationOnly"
},
"keywords": [
"react",
"infinite",
"news",
"ticker",
"marquee",
"news ticker"
],
"author": "Wojciech Grzebieniowski <[email protected]>",
"license": "ISC",
"devDependencies": {
"@types/react": "^18.0.5",
"@types/react-dom": "^18.0.1",
"@typescript-eslint/eslint-plugin": "^4.31.0",
"@typescript-eslint/parser": "^4.31.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-react": "^7.25.1",
"eslint-plugin-react-hooks": "^4.2.0",
"gh-pages": "^3.2.3",
"prettier": "^2.3.2",
"typescript": "^4.4.2",
"vite": "^2.5.6"
},
"peerDependencies": {
"@types/react": "^16.8 || ^17.0 || ^18.0",
"react": "^16.8 || ^17.0 || ^18.0",
"react-dom": "^16.8 || ^17.0 || ^18.0"
},
"dependencies": {
"@react-hook/resize-observer": "^2.0.2"
}
}