* chore: include rimraf as part of the build for most of the packages * cleanup * revert medusa interface * missing script update
40 lines
901 B
JSON
40 lines
901 B
JSON
{
|
|
"name": "@medusajs/modules-sdk",
|
|
"version": "1.9.0",
|
|
"description": "SDK for medusa modules",
|
|
"main": "dist/index.js",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/medusajs/medusa",
|
|
"directory": "packages/modules-sdk"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"author": "Medusa",
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"cross-env": "^5.2.1",
|
|
"jest": "^25.5.4",
|
|
"rimraf": "^5.0.1",
|
|
"ts-jest": "^25.5.1",
|
|
"typescript": "^4.4.4"
|
|
},
|
|
"dependencies": {
|
|
"@medusajs/orchestration": "^0.1.0",
|
|
"@medusajs/types": "^1.9.0",
|
|
"@medusajs/utils": "^1.9.3",
|
|
"awilix": "^8.0.0",
|
|
"resolve-cwd": "^3.0.0"
|
|
},
|
|
"scripts": {
|
|
"prepare": "cross-env NODE_ENV=production yarn run build",
|
|
"build": "rimraf dist && tsc --build",
|
|
"test": "jest",
|
|
"watch": "tsc --build --watch"
|
|
}
|
|
}
|