ingred-ui 33.4.1-canary.0 → 33.5.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 +17 -43
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ingred-ui",
|
|
3
|
-
"version": "33.
|
|
3
|
+
"version": "33.5.0",
|
|
4
4
|
"description": "",
|
|
5
5
|
"author": "CARTA HOLDINGS, Inc.",
|
|
6
6
|
"license": "MIT",
|
|
@@ -11,26 +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
|
-
"lint": "tsc && eslint 'src/**/*.{ts,tsx}' && prettier --check 'src/**/*.{ts,tsx}'",
|
|
29
|
-
"format": "prettier --write 'src/**/*.{ts,tsx}'",
|
|
30
|
-
"generate": "pnpm exec scaffdog generate",
|
|
31
|
-
"release": "changeset tag && changeset publish",
|
|
32
|
-
"update-holidays": "node scripts/holiday/update-holidays.js"
|
|
33
|
-
},
|
|
34
17
|
"dependencies": {
|
|
35
18
|
"@floating-ui/react": "^0.26.0",
|
|
36
19
|
"csstype": "3.1.2",
|
|
@@ -114,29 +97,20 @@
|
|
|
114
97
|
"dist",
|
|
115
98
|
"bin"
|
|
116
99
|
],
|
|
117
|
-
"
|
|
118
|
-
"
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
"picomatch@<2.3.2": "2.3.2"
|
|
133
|
-
},
|
|
134
|
-
"onlyBuiltDependencies": [
|
|
135
|
-
"esbuild",
|
|
136
|
-
"gifsicle",
|
|
137
|
-
"mozjpeg",
|
|
138
|
-
"optipng-bin",
|
|
139
|
-
"styled-components"
|
|
140
|
-
]
|
|
100
|
+
"scripts": {
|
|
101
|
+
"test": "cross-env CI=1 jest --runInBand",
|
|
102
|
+
"test:watch": "jest --watchAll",
|
|
103
|
+
"test:update": "jest --updateSnapshot",
|
|
104
|
+
"build": "NODE_ENV=production rollup -c --bundleConfigAsCjs",
|
|
105
|
+
"start": "rollup -c -w",
|
|
106
|
+
"storybook": "storybook dev -p 6006",
|
|
107
|
+
"build-storybook": "storybook build",
|
|
108
|
+
"lint:a11y": "pnpm run build-storybook && node scripts/a11y/lint-storybook.mjs",
|
|
109
|
+
"lint:a11y:update": "pnpm run build-storybook && node scripts/a11y/lint-storybook.mjs --update-baseline",
|
|
110
|
+
"lint": "tsc && eslint 'src/**/*.{ts,tsx}' && prettier --check 'src/**/*.{ts,tsx}'",
|
|
111
|
+
"format": "prettier --write 'src/**/*.{ts,tsx}'",
|
|
112
|
+
"generate": "pnpm exec scaffdog generate",
|
|
113
|
+
"release": "changeset tag && changeset publish",
|
|
114
|
+
"update-holidays": "node scripts/holiday/update-holidays.js"
|
|
141
115
|
}
|
|
142
|
-
}
|
|
116
|
+
}
|