* fix: caching deps + add true parallelization to integration tests api * fix: github action * chore: upgrade to yarn berry (#1762) * init migration * remove: yarn.lock from all pkgs * fix: build script in pkgs * adjust yarn config * fix: yarn.lock and yarnrc.yml * fix: github actions * fix: wrong type * fix (medusa-react): use dts-cli instead of tsdx * fix: yarn.lock * fix: yarn v * fix: prepare script * add: comment on why we need to downgrade yarn before medusa-dev * chore: move to Turborepo (#1763) * increase number of parallel nodes * fix (medusa-fulfillment-webshipper): build script * fix: use new version of medusa-dev * fix: rename cache-bootstrap to cache-deps
42 lines
1007 B
JSON
42 lines
1007 B
JSON
{
|
|
"name": "@medusajs/medusa-js",
|
|
"version": "1.2.3",
|
|
"description": "Client for Medusa Commerce Rest API",
|
|
"main": "./dist/index.js",
|
|
"types": "./dist/index.d.ts",
|
|
"files": [
|
|
"dist/**/*"
|
|
],
|
|
"scripts": {
|
|
"build": "tsc --build",
|
|
"prepare": "cross-env NODE_ENV=production yarn run build",
|
|
"test": "jest --passWithNoTests"
|
|
},
|
|
"author": "Oliver Juhl",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"@medusajs/medusa": "^1.3.3",
|
|
"axios": "^0.24.0",
|
|
"form-data": "^4.0.0",
|
|
"qs": "^6.10.3",
|
|
"retry-axios": "^2.6.0"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/medusajs/medusa",
|
|
"directory": "packages/medusa-js"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/medusajs/medusa/issues"
|
|
},
|
|
"devDependencies": {
|
|
"@types/jest": "^26.0.19",
|
|
"cross-env": "^7.0.3",
|
|
"eslint": "^8.2.0",
|
|
"jest": "^26.6.3",
|
|
"prettier": "^2.2.1",
|
|
"typescript": "^4.1.3"
|
|
},
|
|
"gitHead": "cd1f5afa5aa8c0b15ea957008ee19f1d695cbd2e"
|
|
}
|