Files
medusa-store/packages/admin/package.json
Kasper Fabricius Kristensen 8a7421db5b feat(admin): Improve DX for deploying admin externally (#3418)
* init deploy command

* add include flag

* add 'shortcut' flag

* add dev command, fix var replacement, change default behaviour

* cleanup params of build command

* fix defaults when using the plugin to serve admin

* add changeset

* fix globals

* update README

* throw error on no build found

---------

Co-authored-by: Oliver Windall Juhl <59018053+olivermrbl@users.noreply.github.com>
2023-03-17 13:18:51 +01:00

48 lines
948 B
JSON

{
"name": "@medusajs/admin",
"version": "0.0.1",
"bin": {
"medusa-admin": "./bin/medusa-admin.js"
},
"main": "index.js",
"types": "types/index.d.ts",
"files": [
"bin",
"types",
"*.js",
"api",
"loaders",
"commands",
"utils",
"setup"
],
"scripts": {
"build": "tsc --build",
"test": "jest --passWithNoTests"
},
"repository": {
"type": "git",
"url": "https://github.com/medusajs/medusa.git",
"directory": "packages/admin"
},
"dependencies": {
"@medusajs/admin-ui": "*",
"commander": "^10.0.0",
"dotenv": "^16.0.3",
"express": "^4.17.1",
"fs-extra": "^11.1.0",
"medusa-core-utils": "*",
"ora": "5.4.0",
"picocolors": "^1.0.0",
"ts-dedent": "^2.2.0"
},
"peerDependencies": {
"@medusajs/medusa": "*"
},
"devDependencies": {
"@types/express": "^4.17.13",
"typescript": "^4.9.3"
},
"packageManager": "yarn@3.2.1"
}