@sanity/ui 2.15.15-canary.0 → 2.15.15
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 +41 -27
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sanity/ui",
|
|
3
|
-
"version": "2.15.15
|
|
3
|
+
"version": "2.15.15",
|
|
4
4
|
"keywords": [
|
|
5
5
|
"sanity",
|
|
6
6
|
"ui",
|
|
@@ -60,6 +60,32 @@
|
|
|
60
60
|
"exports",
|
|
61
61
|
"src"
|
|
62
62
|
],
|
|
63
|
+
"scripts": {
|
|
64
|
+
"build": "run-s clean pkg:build pkg:check figma:pkg:build",
|
|
65
|
+
"clean": "rimraf .workshop dist",
|
|
66
|
+
"commit": "cz",
|
|
67
|
+
"cypress:dev": "run-p dev cypress:open",
|
|
68
|
+
"cypress:open": "cypress open",
|
|
69
|
+
"cypress:run": "cypress run",
|
|
70
|
+
"dev": "run-p storybook:dev workshop:dev",
|
|
71
|
+
"figma:pkg:build": "cd figma && pnpm build",
|
|
72
|
+
"format": "prettier --write --cache --ignore-unknown .",
|
|
73
|
+
"lint": "eslint .",
|
|
74
|
+
"pkg:build": "pkg build --strict",
|
|
75
|
+
"pkg:check": "pkg --strict",
|
|
76
|
+
"prepare": "husky install",
|
|
77
|
+
"prepack": "pnpm build",
|
|
78
|
+
"release": "semantic-release",
|
|
79
|
+
"storybook:build": "storybook build",
|
|
80
|
+
"storybook:dev": "storybook dev -p 6006",
|
|
81
|
+
"test": "jest",
|
|
82
|
+
"test:browser": "start-server-and-test 'run-s workshop:build workshop:start' http://localhost:1337 'run-s cypress:run'",
|
|
83
|
+
"ts:check": "tsc",
|
|
84
|
+
"watch": "pkg watch --strict",
|
|
85
|
+
"workshop:build": "workshop build",
|
|
86
|
+
"workshop:dev": "workshop dev",
|
|
87
|
+
"workshop:start": "http-server -a localhost -c-0 -p 1337 -s -P http://localhost:1337/index.html? dist"
|
|
88
|
+
},
|
|
63
89
|
"commitlint": {
|
|
64
90
|
"extends": [
|
|
65
91
|
"@commitlint/config-conventional"
|
|
@@ -109,7 +135,7 @@
|
|
|
109
135
|
"@sanity/pkg-utils": "^7.2.2",
|
|
110
136
|
"@sanity/prettier-config": "^1.0.3",
|
|
111
137
|
"@sanity/semantic-release-preset": "^5.0.0",
|
|
112
|
-
"@sanity/ui-workshop": "^2.1.
|
|
138
|
+
"@sanity/ui-workshop": "^2.1.2",
|
|
113
139
|
"@storybook/addon-a11y": "^8.6.12",
|
|
114
140
|
"@storybook/addon-docs": "^8.6.12",
|
|
115
141
|
"@storybook/addon-essentials": "^8.6.12",
|
|
@@ -184,37 +210,25 @@
|
|
|
184
210
|
"react-is": "^18 || >=19.0.0-0",
|
|
185
211
|
"styled-components": "^5.2 || ^6"
|
|
186
212
|
},
|
|
213
|
+
"packageManager": "pnpm@9.15.9",
|
|
187
214
|
"engines": {
|
|
188
215
|
"node": ">=14.0.0"
|
|
189
216
|
},
|
|
190
217
|
"publishConfig": {
|
|
191
218
|
"access": "public"
|
|
192
219
|
},
|
|
220
|
+
"pnpm": {
|
|
221
|
+
"overrides": {
|
|
222
|
+
"@types/react": "$@types/react",
|
|
223
|
+
"@types/react-dom": "$@types/react-dom",
|
|
224
|
+
"@types/react-is": "$@types/react-is",
|
|
225
|
+
"conventional-changelog-conventionalcommits": ">= 8.0.0",
|
|
226
|
+
"react": "$react",
|
|
227
|
+
"react-dom": "$react-dom",
|
|
228
|
+
"react-is": "$react-is"
|
|
229
|
+
}
|
|
230
|
+
},
|
|
193
231
|
"esm.sh": {
|
|
194
232
|
"bundle": false
|
|
195
|
-
},
|
|
196
|
-
"scripts": {
|
|
197
|
-
"build": "run-s clean pkg:build pkg:check figma:pkg:build",
|
|
198
|
-
"clean": "rimraf .workshop dist",
|
|
199
|
-
"commit": "cz",
|
|
200
|
-
"cypress:dev": "run-p dev cypress:open",
|
|
201
|
-
"cypress:open": "cypress open",
|
|
202
|
-
"cypress:run": "cypress run",
|
|
203
|
-
"dev": "run-p storybook:dev workshop:dev",
|
|
204
|
-
"figma:pkg:build": "cd figma && pnpm build",
|
|
205
|
-
"format": "prettier --write --cache --ignore-unknown .",
|
|
206
|
-
"lint": "eslint .",
|
|
207
|
-
"pkg:build": "pkg build --strict",
|
|
208
|
-
"pkg:check": "pkg --strict",
|
|
209
|
-
"release": "semantic-release",
|
|
210
|
-
"storybook:build": "storybook build",
|
|
211
|
-
"storybook:dev": "storybook dev -p 6006",
|
|
212
|
-
"test": "jest",
|
|
213
|
-
"test:browser": "start-server-and-test 'run-s workshop:build workshop:start' http://localhost:1337 'run-s cypress:run'",
|
|
214
|
-
"ts:check": "tsc",
|
|
215
|
-
"watch": "pkg watch --strict",
|
|
216
|
-
"workshop:build": "workshop build",
|
|
217
|
-
"workshop:dev": "workshop dev",
|
|
218
|
-
"workshop:start": "http-server -a localhost -c-0 -p 1337 -s -P http://localhost:1337/index.html? dist"
|
|
219
233
|
}
|
|
220
|
-
}
|
|
234
|
+
}
|