package.json 543 B

1234567891011121314151617181920212223
  1. {
  2. "name": "d8d-webcontainer-types",
  3. "version": "1.0.1",
  4. "type": "module",
  5. "main": "./dist/index.js",
  6. "module": "./dist/index.js",
  7. "types": "./dist/index.d.ts",
  8. "exports": {
  9. ".": {
  10. "types": "./dist/index.d.ts",
  11. "import": "./dist/index.js",
  12. "require": "./dist/index.cjs"
  13. }
  14. },
  15. "scripts": {
  16. "build:types": "tsc --emitDeclarationOnly",
  17. "build:js": "tsup src/index.ts --format esm,cjs",
  18. "build": "npm run build:types && npm run build:js"
  19. },
  20. "devDependencies": {
  21. "tsup": "^8.0.2"
  22. }
  23. }