Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
59 lines
1.6 KiB
JSON
59 lines
1.6 KiB
JSON
{
|
|
"name": "@medusajs/utils",
|
|
"version": "2.12.3",
|
|
"description": "Medusa utilities functions shared by Medusa core and Modules",
|
|
"main": "dist/index.js",
|
|
"exports": {
|
|
".": "./dist/index.js"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/medusajs/medusa",
|
|
"directory": "packages/core/utils"
|
|
},
|
|
"engines": {
|
|
"node": ">=20.0.0"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"!dist/**/__tests__",
|
|
"!dist/**/__mocks__",
|
|
"!dist/**/__fixtures__"
|
|
],
|
|
"author": "Medusa",
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"@medusajs/types": "2.12.3",
|
|
"express": "^4.21.0"
|
|
},
|
|
"dependencies": {
|
|
"@graphql-codegen/core": "^4.0.2",
|
|
"@graphql-codegen/typescript": "^4.0.9",
|
|
"@graphql-tools/merge": "^9.0.7",
|
|
"@graphql-tools/schema": "^10.0.6",
|
|
"@medusajs/deps": "2.12.3",
|
|
"@types/pluralize": "^0.0.33",
|
|
"bignumber.js": "^9.1.2",
|
|
"dotenv": "^16.4.5",
|
|
"dotenv-expand": "^11.0.6",
|
|
"graphql": "^16.9.0",
|
|
"jsonwebtoken": "^9.0.2",
|
|
"pg-connection-string": "^2.7.0",
|
|
"pluralize": "^8.0.0",
|
|
"ulid": "^2.3.0",
|
|
"zod": "3.25.76"
|
|
},
|
|
"peerDependencies": {
|
|
"express": "^4.21.0"
|
|
},
|
|
"scripts": {
|
|
"build": "yarn run -T rimraf dist && yarn run -T tsc --build",
|
|
"watch": "yarn run -T tsc --build --watch",
|
|
"test": "../../../node_modules/.bin/jest --silent=false --bail --forceExit --testPathIgnorePatterns='/integration-tests/' --testPathPattern=src",
|
|
"test:integration": "../../../node_modules/.bin/jest --passWithNoTests --silent --bail --forceExit --testPathPattern=\"src/.*/integration-tests/__tests__/.*\\.ts\""
|
|
}
|
|
}
|