@umami/react-zen 0.70.0 → 0.71.0

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@umami/react-zen",
3
- "version": "0.70.0",
3
+ "version": "0.71.0",
4
4
  "description": "Modern, minimalist React component library",
5
5
  "author": "Umami <hello@umami.is>",
6
6
  "license": "MIT",
@@ -19,18 +19,6 @@
19
19
  "publishConfig": {
20
20
  "access": "public"
21
21
  },
22
- "scripts": {
23
- "dev": "next dev -p 9001 --turbo",
24
- "build": "next build",
25
- "start": "next start",
26
- "lint": "next lint",
27
- "types": "tsc -p tsconfig.build.json",
28
- "esbuild": "node esbuild.mjs",
29
- "rollup": "rollup -c",
30
- "dts": "node dts.mjs",
31
- "css": "node css.mjs",
32
- "bundle": "npm-run-all types dts esbuild css"
33
- },
34
22
  "lint-staged": {
35
23
  "**/*.{js,jsx,ts,tsx}": [
36
24
  "prettier --write",
@@ -102,10 +90,16 @@
102
90
  "stylelint-config-recommended": "^15.0.0",
103
91
  "typescript": "^5.7.3"
104
92
  },
105
- "pnpm": {
106
- "onlyBuiltDependencies": [
107
- "esbuild",
108
- "sharp"
109
- ]
93
+ "scripts": {
94
+ "dev": "next dev -p 9001 --turbo",
95
+ "build": "next build",
96
+ "start": "next start",
97
+ "lint": "next lint",
98
+ "types": "tsc -p tsconfig.build.json",
99
+ "esbuild": "node esbuild.mjs",
100
+ "rollup": "rollup -c",
101
+ "dts": "node dts.mjs",
102
+ "css": "node css.mjs",
103
+ "bundle": "npm-run-all types dts esbuild css"
110
104
  }
111
- }
105
+ }