package.json 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. {
  2. "name": "@vendure/docs",
  3. "version": "0.0.0-202601221213",
  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. "src",
  18. "README.md"
  19. ],
  20. "scripts": {
  21. "generate-dates": "tsx scripts/generate-dates.ts",
  22. "prebuild": "npm run generate-dates",
  23. "build": "rimraf dist && tsc -p ./tsconfig.build.json",
  24. "prepublishOnly": "npm run test:mdx && npm run build",
  25. "publish:local": "npm version 0.0.0-$(date +%Y%m%d%H%M) --no-git-tag-version && npm publish",
  26. "publish:local:next": "npm version 0.0.0-$(date +%Y%m%d%H%M) --no-git-tag-version && npm publish --tag next",
  27. "test:mdx": "tsx scripts/test-mdx.ts",
  28. "test:mdx:verbose": "tsx scripts/test-mdx.ts --verbose",
  29. "typecheck": "tsc --noEmit"
  30. },
  31. "dependencies": {
  32. "@vendure-io/docs-provider": "^0.8.2"
  33. },
  34. "devDependencies": {
  35. "rimraf": "^5.0.5",
  36. "tsx": "^4.7.0",
  37. "typescript": "5.8.2"
  38. }
  39. }