package.json 668 B

1234567891011121314151617181920212223242526272829
  1. {
  2. "name": "@vendure/pub-sub-plugin",
  3. "version": "0.18.2",
  4. "license": "MIT",
  5. "main": "lib/index.js",
  6. "types": "lib/index.d.ts",
  7. "files": [
  8. "lib/**/*"
  9. ],
  10. "scripts": {
  11. "watch": "tsc -p ./tsconfig.build.json --watch",
  12. "build": "rimraf lib && tsc -p ./tsconfig.build.json",
  13. "lint": "tslint --fix --project ./",
  14. "test": "jest --config ./jest.config.js",
  15. "ci": "yarn build"
  16. },
  17. "publishConfig": {
  18. "access": "public"
  19. },
  20. "dependencies": {
  21. "@google-cloud/pubsub": "^2.8.0"
  22. },
  23. "devDependencies": {
  24. "@vendure/common": "^0.18.1",
  25. "@vendure/core": "^0.18.2",
  26. "rimraf": "^3.0.2",
  27. "typescript": "4.0.3"
  28. }
  29. }