package.json 747 B

12345678910111213141516171819202122232425262728293031
  1. {
  2. "name": "@vendure/admin-ui-plugin",
  3. "version": "0.16.2",
  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.17.8",
  21. "@types/fs-extra": "^9.0.1",
  22. "@vendure/common": "^0.16.2",
  23. "@vendure/core": "^0.16.2",
  24. "express": "^4.17.1",
  25. "rimraf": "^3.0.2",
  26. "typescript": "4.0.3"
  27. },
  28. "dependencies": {
  29. "fs-extra": "^9.0.1"
  30. }
  31. }