* fix(workflows=sdk): Fix StepFunction typings and custom step name * Create smart-nails-switch.md * fixes * fixes * fixes --------- Co-authored-by: Oli Juhl <59018053+olivermrbl@users.noreply.github.com>
46 lines
1.1 KiB
JSON
46 lines
1.1 KiB
JSON
{
|
|
"name": "@medusajs/workflows-sdk",
|
|
"version": "0.1.3",
|
|
"description": "Set of workflows tooling for Medusa",
|
|
"main": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/medusajs/medusa",
|
|
"directory": "packages/workflows"
|
|
},
|
|
"engines": {
|
|
"node": ">=16"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"author": "Medusa",
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"@medusajs/types": "^1.11.12",
|
|
"cross-env": "^5.2.1",
|
|
"jest": "^29.6.3",
|
|
"rimraf": "^5.0.1",
|
|
"ts-jest": "^29.1.1",
|
|
"typescript": "^5.1.6"
|
|
},
|
|
"dependencies": {
|
|
"@medusajs/modules-sdk": "^1.12.8",
|
|
"@medusajs/orchestration": "^0.5.4",
|
|
"@medusajs/utils": "^1.11.5",
|
|
"awilix": "^8.0.1",
|
|
"ulid": "^2.3.0"
|
|
},
|
|
"scripts": {
|
|
"prepublishOnly": "cross-env NODE_ENV=production tsc --build",
|
|
"build": "rimraf dist && tsc --build",
|
|
"watch": "tsc --build --watch",
|
|
"test": "jest --runInBand --bail --forceExit",
|
|
"test:run": "../../node_modules/.bin/ts-node ./src/utils/_playground.ts"
|
|
}
|
|
}
|