@theengineeringmind/auto-skeleton 0.1.0 → 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +20 -17
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@theengineeringmind/auto-skeleton",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "Automatic skeleton loading screens measured from your real UI. React skeleton component and vanilla JS core with shimmer, SSR and Next.js support. No hand-written skeleton components.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"skeleton",
|
|
@@ -73,6 +73,23 @@
|
|
|
73
73
|
"README.md",
|
|
74
74
|
"LICENSE"
|
|
75
75
|
],
|
|
76
|
+
"scripts": {
|
|
77
|
+
"build": "tsup",
|
|
78
|
+
"dev": "tsup --watch",
|
|
79
|
+
"typecheck": "tsc --noEmit -p tsconfig.json",
|
|
80
|
+
"lint": "eslint .",
|
|
81
|
+
"format": "prettier --write .",
|
|
82
|
+
"format:check": "prettier --check .",
|
|
83
|
+
"test": "vitest run --project unit",
|
|
84
|
+
"test:browser": "vitest run --project browser",
|
|
85
|
+
"test:all": "vitest run",
|
|
86
|
+
"test:watch": "vitest",
|
|
87
|
+
"size": "size-limit",
|
|
88
|
+
"check": "pnpm typecheck && pnpm lint && pnpm format:check && pnpm test:all && pnpm build && pnpm size",
|
|
89
|
+
"playground": "vite playground",
|
|
90
|
+
"prepublishOnly": "pnpm check",
|
|
91
|
+
"preversion": "pnpm check"
|
|
92
|
+
},
|
|
76
93
|
"peerDependencies": {
|
|
77
94
|
"react": ">=18",
|
|
78
95
|
"react-dom": ">=18"
|
|
@@ -85,6 +102,7 @@
|
|
|
85
102
|
"optional": true
|
|
86
103
|
}
|
|
87
104
|
},
|
|
105
|
+
"packageManager": "pnpm@11.5.0",
|
|
88
106
|
"engines": {
|
|
89
107
|
"node": ">=18"
|
|
90
108
|
},
|
|
@@ -123,20 +141,5 @@
|
|
|
123
141
|
"./dist/react.d.ts"
|
|
124
142
|
]
|
|
125
143
|
}
|
|
126
|
-
},
|
|
127
|
-
"scripts": {
|
|
128
|
-
"build": "tsup",
|
|
129
|
-
"dev": "tsup --watch",
|
|
130
|
-
"typecheck": "tsc --noEmit -p tsconfig.json",
|
|
131
|
-
"lint": "eslint .",
|
|
132
|
-
"format": "prettier --write .",
|
|
133
|
-
"format:check": "prettier --check .",
|
|
134
|
-
"test": "vitest run --project unit",
|
|
135
|
-
"test:browser": "vitest run --project browser",
|
|
136
|
-
"test:all": "vitest run",
|
|
137
|
-
"test:watch": "vitest",
|
|
138
|
-
"size": "size-limit",
|
|
139
|
-
"check": "pnpm typecheck && pnpm lint && pnpm format:check && pnpm test:all && pnpm build && pnpm size",
|
|
140
|
-
"playground": "vite playground"
|
|
141
144
|
}
|
|
142
|
-
}
|
|
145
|
+
}
|