-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (67 loc) · 1.62 KB
/
package.json
File metadata and controls
79 lines (67 loc) · 1.62 KB
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "react-auto-skeleton-z",
"version": "1.1.1",
"description": "Automatic skeleton UI generation for React components",
"license": "MIT",
"author": "Delpi.Kye",
"sideEffects": [
"*.css"
],
"main": "build/index.cjs",
"module": "build/index.esm.js",
"types": "build/index.d.ts",
"exports": {
".": {
"types": "./build/index.d.ts",
"import": "./build/index.esm.js",
"require": "./build/index.cjs"
},
"./styles.css": "./build/styles.css"
},
"files": [
"build"
],
"scripts": {
"clean": "rimraf build",
"build": "rollup -c",
"cb": "npm run clean && npm run build",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/delpikye-v/react-auto-skeleton.git"
},
"homepage": "https://github.com/delpikye-v/react-auto-skeleton#readme",
"bugs": {
"url": "https://github.com/delpikye-v/react-auto-skeleton/issues"
},
"keywords": [
"react",
"skeleton",
"skeleton-ui",
"loading",
"ui",
"react-components",
"react-hooks",
"react-library",
"design-system",
"micro-ui"
],
"peerDependencies": {
"react": ">=17"
},
"dependencies": {},
"devDependencies": {
"@rollup/plugin-commonjs": "^17.1.0",
"@rollup/plugin-node-resolve": "^11.2.1",
"@types/react": "^17.0.90",
"rimraf": "^3.0.2",
"rollup": "^2.56.3",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.29.0",
"rollup-plugin-postcss": "^4.0.2",
"typescript": "^4.4.2",
"tslib": "^2.3.1"
}
}