Files
medusa-store/packages/core/js-sdk/package.json
github-actions[bot] cfa38871cb Version Packages (#13978)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2025-12-17 13:55:25 +01:00

44 lines
1.1 KiB
JSON

{
"name": "@medusajs/js-sdk",
"version": "2.12.3",
"description": "SDK for the Medusa API",
"main": "dist/index.js",
"module": "dist/esm/index.js",
"types": "dist/index.d.ts",
"exports": {
"import": "./dist/esm/index.js",
"require": "./dist/index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/medusajs/medusa",
"directory": "packages/core/js-sdk"
},
"engines": {
"node": ">=20"
},
"publishConfig": {
"access": "public"
},
"files": [
"dist",
"!dist/**/__tests__",
"!dist/**/__mocks__",
"!dist/**/__fixtures__"
],
"author": "Medusa",
"license": "MIT",
"devDependencies": {
"@medusajs/types": "2.12.3"
},
"dependencies": {
"fetch-event-stream": "^0.1.5",
"qs": "^6.12.1"
},
"scripts": {
"build": "yarn run -T rimraf dist && yarn run -T tsc -p tsconfig.json && yarn run -T tsc -p tsconfig.esm.json",
"test": "../../../node_modules/.bin/jest --passWithNoTests --bail --forceExit --detectOpenHandles",
"watch": "yarn run -T tsc --build --watch"
}
}