package.json 635 B

12345678910111213141516171819202122232425
  1. {
  2. "name": "@vendure/common",
  3. "version": "2.1.0-next.7",
  4. "main": "index.js",
  5. "license": "MIT",
  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": "yarn 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. "devDependencies": {
  22. "rimraf": "^3.0.2",
  23. "typescript": "4.9.5"
  24. }
  25. }