package.json 925 B

123456789101112131415161718192021222324252627282930313233
  1. {
  2. "name": "@vendure/docs",
  3. "version": "0.0.0-202601211103",
  4. "type": "module",
  5. "main": "dist/index.js",
  6. "types": "dist/index.d.ts",
  7. "exports": {
  8. ".": "./dist/index.js",
  9. "./manifest": "./dist/manifest.js"
  10. },
  11. "publishConfig": {
  12. "access": "public"
  13. },
  14. "files": [
  15. "dist",
  16. "docs",
  17. "README.md"
  18. ],
  19. "scripts": {
  20. "build": "rimraf dist && tsc -p ./tsconfig.build.json",
  21. "prepublishOnly": "npm run build",
  22. "publish:local": "npm version 0.0.0-$(date +%Y%m%d%H%M) --no-git-tag-version && npm publish",
  23. "publish:local:next": "npm version 0.0.0-$(date +%Y%m%d%H%M) --no-git-tag-version && npm publish --tag next",
  24. "typecheck": "tsc"
  25. },
  26. "dependencies": {
  27. "@vendure-io/docs-provider": "^0.5.0"
  28. },
  29. "devDependencies": {
  30. "rimraf": "^5.0.5",
  31. "typescript": "5.8.2"
  32. }
  33. }