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