ingred-ui 33.7.0-canary.4 → 33.7.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 +19 -46
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ingred-ui",
|
|
3
|
-
"version": "33.7.0
|
|
3
|
+
"version": "33.7.0",
|
|
4
4
|
"description": "",
|
|
5
5
|
"author": "CARTA HOLDINGS, Inc.",
|
|
6
6
|
"license": "MIT",
|
|
@@ -11,27 +11,9 @@
|
|
|
11
11
|
"bin": {
|
|
12
12
|
"ingred-ui-codemod": "./bin/ingred-ui-codemod.mjs"
|
|
13
13
|
},
|
|
14
|
-
"packageManager": "pnpm@10.33.0",
|
|
15
14
|
"engines": {
|
|
16
15
|
"node": ">=20.0.0"
|
|
17
16
|
},
|
|
18
|
-
"scripts": {
|
|
19
|
-
"test": "cross-env CI=1 jest --runInBand",
|
|
20
|
-
"test:watch": "jest --watchAll",
|
|
21
|
-
"test:update": "jest --updateSnapshot",
|
|
22
|
-
"build": "NODE_ENV=production rollup -c --bundleConfigAsCjs",
|
|
23
|
-
"start": "rollup -c -w",
|
|
24
|
-
"storybook": "storybook dev -p 6006",
|
|
25
|
-
"build-storybook": "storybook build",
|
|
26
|
-
"lint:a11y": "pnpm run build-storybook && node scripts/a11y/lint-storybook.mjs",
|
|
27
|
-
"lint:a11y:update": "pnpm run build-storybook && node scripts/a11y/lint-storybook.mjs --update-baseline",
|
|
28
|
-
"chaos": "pnpm run build-storybook && node scripts/chaos/run.mjs",
|
|
29
|
-
"lint": "tsc && eslint 'src/**/*.{ts,tsx}' && prettier --check 'src/**/*.{ts,tsx}'",
|
|
30
|
-
"format": "prettier --write 'src/**/*.{ts,tsx}'",
|
|
31
|
-
"generate": "pnpm exec scaffdog generate",
|
|
32
|
-
"release": "changeset tag && changeset publish",
|
|
33
|
-
"update-holidays": "node scripts/holiday/update-holidays.js"
|
|
34
|
-
},
|
|
35
17
|
"dependencies": {
|
|
36
18
|
"@floating-ui/react": "^0.26.0",
|
|
37
19
|
"csstype": "3.1.2",
|
|
@@ -110,37 +92,28 @@
|
|
|
110
92
|
"ts-jest": "29.1.0",
|
|
111
93
|
"tslib": "2.8.1",
|
|
112
94
|
"typescript": "5.2.2",
|
|
113
|
-
"vite": "8.0.
|
|
95
|
+
"vite": "8.0.16",
|
|
114
96
|
"vitest": "^4.1.8"
|
|
115
97
|
},
|
|
116
98
|
"files": [
|
|
117
99
|
"dist",
|
|
118
100
|
"bin"
|
|
119
101
|
],
|
|
120
|
-
"
|
|
121
|
-
"
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
"ws@<8.21.0": "8.21.0"
|
|
137
|
-
},
|
|
138
|
-
"onlyBuiltDependencies": [
|
|
139
|
-
"esbuild",
|
|
140
|
-
"gifsicle",
|
|
141
|
-
"mozjpeg",
|
|
142
|
-
"optipng-bin",
|
|
143
|
-
"styled-components"
|
|
144
|
-
]
|
|
102
|
+
"scripts": {
|
|
103
|
+
"test": "cross-env CI=1 jest --runInBand",
|
|
104
|
+
"test:watch": "jest --watchAll",
|
|
105
|
+
"test:update": "jest --updateSnapshot",
|
|
106
|
+
"build": "NODE_ENV=production rollup -c --bundleConfigAsCjs",
|
|
107
|
+
"start": "rollup -c -w",
|
|
108
|
+
"storybook": "storybook dev -p 6006",
|
|
109
|
+
"build-storybook": "storybook build",
|
|
110
|
+
"lint:a11y": "pnpm run build-storybook && node scripts/a11y/lint-storybook.mjs",
|
|
111
|
+
"lint:a11y:update": "pnpm run build-storybook && node scripts/a11y/lint-storybook.mjs --update-baseline",
|
|
112
|
+
"chaos": "pnpm run build-storybook && node scripts/chaos/run.mjs",
|
|
113
|
+
"lint": "tsc && eslint 'src/**/*.{ts,tsx}' && prettier --check 'src/**/*.{ts,tsx}'",
|
|
114
|
+
"format": "prettier --write 'src/**/*.{ts,tsx}'",
|
|
115
|
+
"generate": "pnpm exec scaffdog generate",
|
|
116
|
+
"release": "changeset tag && changeset publish",
|
|
117
|
+
"update-holidays": "node scripts/holiday/update-holidays.js"
|
|
145
118
|
}
|
|
146
|
-
}
|
|
119
|
+
}
|