@sanity/ui 2.12.0-canary.2 → 2.12.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 +40 -26
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sanity/ui",
|
|
3
|
-
"version": "2.12.0
|
|
3
|
+
"version": "2.12.0",
|
|
4
4
|
"keywords": [
|
|
5
5
|
"sanity",
|
|
6
6
|
"ui",
|
|
@@ -61,6 +61,32 @@
|
|
|
61
61
|
"_visual-editing.js",
|
|
62
62
|
"theme.js"
|
|
63
63
|
],
|
|
64
|
+
"scripts": {
|
|
65
|
+
"build": "run-s clean pkg:build pkg:check figma:pkg:build",
|
|
66
|
+
"clean": "rimraf .workshop dist",
|
|
67
|
+
"commit": "cz",
|
|
68
|
+
"cypress:dev": "run-p dev cypress:open",
|
|
69
|
+
"cypress:open": "cypress open",
|
|
70
|
+
"cypress:run": "cypress run",
|
|
71
|
+
"dev": "run-p storybook:dev workshop:dev",
|
|
72
|
+
"figma:pkg:build": "cd figma && pnpm build",
|
|
73
|
+
"format": "prettier --write --cache --ignore-unknown .",
|
|
74
|
+
"lint": "eslint . --ext .cjs,.js,.jsx,.mjs,.ts,.tsx",
|
|
75
|
+
"pkg:build": "pkg build --strict",
|
|
76
|
+
"pkg:check": "pkg --strict",
|
|
77
|
+
"prepare": "husky install",
|
|
78
|
+
"prepack": "pnpm build",
|
|
79
|
+
"release": "semantic-release",
|
|
80
|
+
"storybook:build": "storybook build",
|
|
81
|
+
"storybook:dev": "storybook dev -p 6006",
|
|
82
|
+
"test": "jest",
|
|
83
|
+
"test:browser": "start-server-and-test 'run-s workshop:build workshop:start' http://localhost:1337 'run-s cypress:run'",
|
|
84
|
+
"ts:check": "tsc",
|
|
85
|
+
"watch": "pkg watch --strict",
|
|
86
|
+
"workshop:build": "workshop build",
|
|
87
|
+
"workshop:dev": "workshop dev",
|
|
88
|
+
"workshop:start": "http-server -a localhost -c-0 -p 1337 -s -P http://localhost:1337/index.html? dist"
|
|
89
|
+
},
|
|
64
90
|
"commitlint": {
|
|
65
91
|
"extends": [
|
|
66
92
|
"@commitlint/config-conventional"
|
|
@@ -182,37 +208,25 @@
|
|
|
182
208
|
"react-is": "^18 || >=19.0.0-0",
|
|
183
209
|
"styled-components": "^5.2 || ^6"
|
|
184
210
|
},
|
|
211
|
+
"packageManager": "pnpm@9.15.5",
|
|
185
212
|
"engines": {
|
|
186
213
|
"node": ">=14.0.0"
|
|
187
214
|
},
|
|
188
215
|
"publishConfig": {
|
|
189
216
|
"access": "public"
|
|
190
217
|
},
|
|
218
|
+
"pnpm": {
|
|
219
|
+
"overrides": {
|
|
220
|
+
"@types/react": "$@types/react",
|
|
221
|
+
"@types/react-dom": "$@types/react-dom",
|
|
222
|
+
"@types/react-is": "$@types/react-is",
|
|
223
|
+
"conventional-changelog-conventionalcommits": ">= 8.0.0",
|
|
224
|
+
"react": "$react",
|
|
225
|
+
"react-dom": "$react-dom",
|
|
226
|
+
"react-is": "$react-is"
|
|
227
|
+
}
|
|
228
|
+
},
|
|
191
229
|
"esm.sh": {
|
|
192
230
|
"bundle": false
|
|
193
|
-
},
|
|
194
|
-
"scripts": {
|
|
195
|
-
"build": "run-s clean pkg:build pkg:check figma:pkg:build",
|
|
196
|
-
"clean": "rimraf .workshop dist",
|
|
197
|
-
"commit": "cz",
|
|
198
|
-
"cypress:dev": "run-p dev cypress:open",
|
|
199
|
-
"cypress:open": "cypress open",
|
|
200
|
-
"cypress:run": "cypress run",
|
|
201
|
-
"dev": "run-p storybook:dev workshop:dev",
|
|
202
|
-
"figma:pkg:build": "cd figma && pnpm build",
|
|
203
|
-
"format": "prettier --write --cache --ignore-unknown .",
|
|
204
|
-
"lint": "eslint . --ext .cjs,.js,.jsx,.mjs,.ts,.tsx",
|
|
205
|
-
"pkg:build": "pkg build --strict",
|
|
206
|
-
"pkg:check": "pkg --strict",
|
|
207
|
-
"release": "semantic-release",
|
|
208
|
-
"storybook:build": "storybook build",
|
|
209
|
-
"storybook:dev": "storybook dev -p 6006",
|
|
210
|
-
"test": "jest",
|
|
211
|
-
"test:browser": "start-server-and-test 'run-s workshop:build workshop:start' http://localhost:1337 'run-s cypress:run'",
|
|
212
|
-
"ts:check": "tsc",
|
|
213
|
-
"watch": "pkg watch --strict",
|
|
214
|
-
"workshop:build": "workshop build",
|
|
215
|
-
"workshop:dev": "workshop dev",
|
|
216
|
-
"workshop:start": "http-server -a localhost -c-0 -p 1337 -s -P http://localhost:1337/index.html? dist"
|
|
217
231
|
}
|
|
218
|
-
}
|
|
232
|
+
}
|