{ "name": "@fischerx/types", "version": "0.1.0", "description": "Shared type definitions for FischerX", "main": "./dist/index.js", "module": "./dist/index.mjs", "types": "./dist/index.d.ts", "exports": { ".": { "types": "./dist/index.d.ts", "import": "./dist/index.mjs", "require": "./dist/index.js" } }, "scripts": { "build": "tsup src/index.ts --format cjs,esm --dts", "dev": "tsup src/index.ts --format cjs,esm --dts --watch", "lint": "tsc --noEmit", "test": "vitest run", "test:watch": "vitest", "clean": "rm -rf dist" }, "devDependencies": { "tsup": "^8.0.0", "typescript": "^5.3.0", "vitest": "^4.1.7" }, "publishConfig": { "access": "public" } }