package.json 513 B

123456789101112131415161718192021222324
  1. {
  2. "name": "@medici/utils",
  3. "version": "0.0.3",
  4. "main": "dist/index",
  5. "types": "dist/index",
  6. "files": [
  7. "dist"
  8. ],
  9. "author": {
  10. "name": "gemercheung",
  11. "email": "gemercheung@gmail.com",
  12. "url": "http://gemer.xyz/"
  13. },
  14. "scripts": {
  15. "build": "pnpm run clean && pnpm run compile",
  16. "clean": "rimraf -rf ./dist",
  17. "compile": "tsc -p tsconfig.build.json",
  18. "prepublishOnly": "pnpm run build"
  19. },
  20. "devDependencies": {
  21. "rimraf": "~3.0.2",
  22. "typescript": "~4.7.4"
  23. }
  24. }