{ "name": "@fischerx/core", "version": "0.1.0", "description": "Core business logic 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", "dev": "tsup --watch", "lint": "tsc --noEmit", "test": "vitest run", "test:watch": "vitest", "clean": "rm -rf dist" }, "dependencies": { "@fischerx/types": "workspace:*", "@fischerx/constants": "workspace:*", "@fischerx/utils": "workspace:*", "@fischerx/config": "workspace:*" }, "devDependencies": { "@types/node": "^20.0.0", "tsd": "^0.31.0", "tsup": "^8.0.0", "typescript": "^5.3.0", "vitest": "^4.1.7" }, "publishConfig": { "access": "public" } }