package.json 1.1 KB

123456789101112131415161718192021222324252627282930313233343536
  1. {
  2. "name": "@vendure/docs",
  3. "version": "0.0.0-202601211609",
  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 test:mdx && 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. "test:mdx": "tsx scripts/test-mdx.ts",
  25. "test:mdx:verbose": "tsx scripts/test-mdx.ts --verbose",
  26. "typecheck": "tsc"
  27. },
  28. "dependencies": {
  29. "@vendure-io/docs-provider": "^0.7.0"
  30. },
  31. "devDependencies": {
  32. "rimraf": "^5.0.5",
  33. "tsx": "^4.7.0",
  34. "typescript": "5.8.2"
  35. }
  36. }