{ "name": "libmonoformat", "module": "src/index.ts", "type": "module", "exports": { ".": { "require": "./dist/index.cjs", "import": "./dist/index.mjs", "types": "./dist/index.d.ts" } }, "scripts": { "build": "bun run buildcjs && bun run buildmjs && bun run builddts", "buildcjs": "bun build src/index.ts --target browser --format cjs --outfile dist/index.cjs", "buildmjs": "bun build src/index.ts --target browser --format esm --outfile dist/index.mjs", "builddts": "bun run build-dts.ts", "test": "bun test" }, "devDependencies": { "@types/bun": "latest" }, "peerDependencies": { "typescript": "^5" }, "dependencies": { "@types/mithril": "^2.2.8", "mithril": "^2.3.8" } }