1
0

package.json 834 B

123456789101112131415161718192021222324252627282930313233
  1. {
  2. "name": "@vendure/common",
  3. "version": "3.5.2",
  4. "main": "index.js",
  5. "license": "GPL-3.0-or-later",
  6. "repository": {
  7. "type": "git",
  8. "url": "https://github.com/vendurehq/vendure"
  9. },
  10. "scripts": {
  11. "watch": "tsc -p ./tsconfig.build.json -w",
  12. "build": "rimraf lib && tsc -p ./tsconfig.build.json",
  13. "lint": "eslint --fix .",
  14. "test": "vitest --run",
  15. "ci": "npm run build"
  16. },
  17. "homepage": "https://www.vendure.io",
  18. "funding": "https://github.com/sponsors/michaelbromley",
  19. "publishConfig": {
  20. "access": "public"
  21. },
  22. "files": [
  23. "lib/**/*"
  24. ],
  25. "exports": {
  26. ".": "./lib/index.js",
  27. "./lib/*": "./lib/*.js"
  28. },
  29. "devDependencies": {
  30. "rimraf": "^5.0.5",
  31. "typescript": "5.8.2"
  32. }
  33. }