package.json 747 B

12345678910111213141516171819202122232425262728293031
  1. {
  2. "name": "@vendure/admin-ui-plugin",
  3. "version": "0.15.1",
  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.15.0",
  23. "@vendure/core": "^0.15.1",
  24. "express": "^4.16.4",
  25. "rimraf": "^3.0.0",
  26. "typescript": "3.8.3"
  27. },
  28. "dependencies": {
  29. "fs-extra": "^9.0.0"
  30. }
  31. }