-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
42 lines (42 loc) · 1.11 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
{
"name": "tiny-skeleton-loader-react",
"version": "1.2.1",
"description": "zero dependency, ultra lightweight (1KB gzipped) skeleton loader component for react",
"author": "harshzalavadiya",
"license": "MIT",
"repository": "hc-oss/tiny-skeleton-loader-react",
"main": "dist/index.js",
"module": "dist/index.es.js",
"jsnext:main": "dist/index.es.js",
"engines": {
"node": ">=8",
"npm": ">=5"
},
"scripts": {
"build": "rollup -c",
"start": "rollup -c -w"
},
"dependencies": {},
"peerDependencies": {
"react": "^16 || ^17 || ^18",
"react-dom": "^16 || ^17 || ^18"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^22.0.2",
"@rollup/plugin-node-resolve": "^14.0.1",
"@types/react": "^18.0.18",
"@types/react-dom": "^18.0.6",
"postcss": "^8.4.16",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rollup": "^2.79.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-typescript2": "^0.33.0",
"rollup-plugin-url": "^3.0.1",
"typescript": "^4.8.2"
},
"files": [
"dist"
]
}