1
0

package.json 904 B

1234567891011121314151617181920212223242526272829303132
  1. {
  2. "name": "@vendure/docs",
  3. "version": "0.0.0-202601161707",
  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. ],
  18. "scripts": {
  19. "build": "rimraf dist && tsc -p ./tsconfig.build.json",
  20. "prepublishOnly": "npm run build",
  21. "publish:local": "npm version 0.0.0-$(date +%Y%m%d%H%M) --no-git-tag-version && npm publish",
  22. "publish:local:next": "npm version 0.0.0-$(date +%Y%m%d%H%M) --no-git-tag-version && npm publish --tag next",
  23. "typecheck": "tsc"
  24. },
  25. "dependencies": {
  26. "@vendure-io/docs-provider": "^0.2.0"
  27. },
  28. "devDependencies": {
  29. "rimraf": "^5.0.5",
  30. "typescript": "5.8.2"
  31. }
  32. }