2
0

package.json 619 B

1234567891011121314151617181920212223242526
  1. {
  2. "name": "pizzasql",
  3. "version": "0.1.0",
  4. "description": "PizzaSQL client for JavaScript/TypeScript",
  5. "main": "dist/index.js",
  6. "module": "dist/index.mjs",
  7. "types": "dist/index.d.ts",
  8. "exports": {
  9. ".": {
  10. "import": "./dist/index.mjs",
  11. "require": "./dist/index.js",
  12. "types": "./dist/index.d.ts"
  13. }
  14. },
  15. "scripts": {
  16. "build": "tsup index.ts --format cjs,esm --dts",
  17. "test": "bun test"
  18. },
  19. "keywords": ["pizzasql", "database", "sql", "client"],
  20. "author": "PizzaSQL Team",
  21. "license": "MIT",
  22. "devDependencies": {
  23. "tsup": "^8.0.0",
  24. "typescript": "^5.0.0"
  25. }
  26. }