package.json 780 B

1234567891011121314151617181920212223242526272829303132
  1. {
  2. "name": "@vendure/admin-ui-plugin",
  3. "version": "0.5.0",
  4. "main": "lib/index.js",
  5. "types": "lib/index.d.ts",
  6. "files": [
  7. "lib/**/*"
  8. ],
  9. "license": "MIT",
  10. "scripts": {
  11. "build": "rimraf lib && node -r ts-node/register build.ts && yarn compile",
  12. "watch": "tsc -p ./tsconfig.build.json --watch",
  13. "lint": "tslint --fix --project ./",
  14. "compile": "tsc -p ./tsconfig.build.json"
  15. },
  16. "publishConfig": {
  17. "access": "public"
  18. },
  19. "devDependencies": {
  20. "@types/express": "^4.0.39",
  21. "@types/fs-extra": "^8.0.1",
  22. "@vendure/common": "^0.5.0",
  23. "@vendure/core": "^0.5.0",
  24. "express": "^4.16.4",
  25. "rimraf": "^3.0.0",
  26. "typescript": "~3.5.3"
  27. },
  28. "dependencies": {
  29. "@vendure/admin-ui": "^0.5.0",
  30. "fs-extra": "^8.0.1"
  31. }
  32. }