package.json 454 B

12345678910111213141516171819202122
  1. {
  2. "name": "@dotouch/shared",
  3. "version": "0.0.1",
  4. "private": true,
  5. "description": "DoTouch.AI shared types and constants",
  6. "main": "./dist/index.js",
  7. "types": "./dist/index.d.ts",
  8. "exports": {
  9. ".": {
  10. "import": "./dist/index.js",
  11. "types": "./dist/index.d.ts"
  12. }
  13. },
  14. "scripts": {
  15. "build": "tsc",
  16. "typecheck": "tsc --noEmit",
  17. "watch": "tsc --watch"
  18. },
  19. "devDependencies": {
  20. "typescript": "^5.7.0"
  21. }
  22. }