package.json 702 B

123456789101112131415161718192021222324252627
  1. {
  2. "name": "@vendure/stellate-plugin",
  3. "version": "3.1.7",
  4. "license": "GPL-3.0-or-later",
  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": "eslint --fix ."
  14. },
  15. "homepage": "https://www.vendure.io",
  16. "funding": "https://github.com/sponsors/michaelbromley",
  17. "publishConfig": {
  18. "access": "public"
  19. },
  20. "dependencies": {
  21. "node-fetch": "^2.7.0"
  22. },
  23. "devDependencies": {
  24. "@vendure/common": "^3.1.7",
  25. "@vendure/core": "^3.1.7"
  26. }
  27. }