package.json 731 B

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