npm-pkg-hook 1.13.6 → 1.13.7
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/dist/index.js +25 -23
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +25 -23
- package/dist/index.mjs.map +1 -1
- package/package.json +25 -23
package/dist/index.js
CHANGED
|
@@ -292,9 +292,16 @@ module.exports = __toCommonJS(index_exports);
|
|
|
292
292
|
|
|
293
293
|
// package.json
|
|
294
294
|
var package_default = {
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
295
|
+
dependencies: {
|
|
296
|
+
xlsx: "0.18.5"
|
|
297
|
+
},
|
|
298
|
+
devDependencies: {
|
|
299
|
+
"@types/file-saver": "2.0.7",
|
|
300
|
+
"@types/js-cookie": "3.0.6",
|
|
301
|
+
"@types/react": "18.0.20",
|
|
302
|
+
tsup: "8.5.1",
|
|
303
|
+
typescript: "5.9.3"
|
|
304
|
+
},
|
|
298
305
|
exports: {
|
|
299
306
|
".": {
|
|
300
307
|
import: "./dist/index.mjs",
|
|
@@ -302,32 +309,27 @@ var package_default = {
|
|
|
302
309
|
types: "./dist/index.d.ts"
|
|
303
310
|
}
|
|
304
311
|
},
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
prepublishOnly: "npm run build",
|
|
309
|
-
lint: "eslint .",
|
|
310
|
-
test: "jest"
|
|
311
|
-
},
|
|
312
|
+
main: "dist/index.cjs",
|
|
313
|
+
module: "dist/index.mjs",
|
|
314
|
+
name: "npm-pkg-hook",
|
|
312
315
|
peerDependencies: {
|
|
313
|
-
react: "^18 || ^19",
|
|
314
|
-
"react-dom": "^18 || ^19",
|
|
315
|
-
next: "^14 || ^15",
|
|
316
316
|
"@apollo/client": "^3 || ^4",
|
|
317
|
-
graphql: "^16",
|
|
318
317
|
"file-saver": "^2",
|
|
318
|
+
graphql: "^16",
|
|
319
319
|
lodash: "^4",
|
|
320
|
-
|
|
320
|
+
next: "^14 || ^15",
|
|
321
|
+
react: "^18 || ^19",
|
|
322
|
+
"react-dom": "^18 || ^19"
|
|
321
323
|
},
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
324
|
+
scripts: {
|
|
325
|
+
build: "tsup",
|
|
326
|
+
lint: "eslint .",
|
|
327
|
+
prepare: "npm run build",
|
|
328
|
+
prepublishOnly: "npm run build",
|
|
329
|
+
test: "jest"
|
|
328
330
|
},
|
|
329
|
-
|
|
330
|
-
|
|
331
|
+
types: "dist/index.d.ts",
|
|
332
|
+
version: "1.13.7"
|
|
331
333
|
};
|
|
332
334
|
|
|
333
335
|
// src/hooks/updateExtProductFoodsOptional/index.ts
|