package.json 812 B

12345678910111213141516171819202122232425262728293031
  1. {
  2. "name": "@vendure/stellate-plugin",
  3. "version": "3.4.4",
  4. "license": "GPL-3.0-or-later",
  5. "main": "lib/index.js",
  6. "types": "lib/index.d.ts",
  7. "files": [
  8. "lib/**/*"
  9. ],
  10. "repository": {
  11. "type": "git",
  12. "url": "https://github.com/vendure-ecommerce/vendure"
  13. },
  14. "scripts": {
  15. "watch": "tsc -p ./tsconfig.build.json --watch",
  16. "build": "rimraf lib && tsc -p ./tsconfig.build.json",
  17. "lint": "eslint --fix ."
  18. },
  19. "homepage": "https://www.vendure.io",
  20. "funding": "https://github.com/sponsors/michaelbromley",
  21. "publishConfig": {
  22. "access": "public"
  23. },
  24. "dependencies": {
  25. "node-fetch": "^2.7.0"
  26. },
  27. "devDependencies": {
  28. "@vendure/common": "3.4.4",
  29. "@vendure/core": "3.4.4"
  30. }
  31. }