UNPKG

@kubb/types

Version:
65 lines 1.57 kB
{ "name": "@kubb/types", "version": "3.10.0", "description": "Generator types", "keywords": [ "typescript", "plugins", "kubb", "codegen" ], "repository": { "type": "git", "url": "https://github.com/kubb-labs/kubb.git", "directory": "packages/types" }, "license": "MIT", "author": "stijnvanhulle", "sideEffects": false, "type": "module", "exports": { ".": { "import": "./dist/index.js", "require": "./dist/index.cjs", "default": "./dist/index.cjs" }, "./package.json": "./package.json", "./*": "./*" }, "main": "dist/index.cjs", "module": "dist/index.js", "types": "./dist/index.d.ts", "files": [ "src", "dist", "*.d.ts", "*.d.cts", "!/**/**.test.**", "!/**/__tests__/**" ], "dependencies": {}, "devDependencies": { "tsup": "^8.4.0", "typescript": "^5.8.3", "@kubb/config-ts": "3.10.0", "@kubb/config-tsup": "3.10.0" }, "engines": { "node": ">=20" }, "publishConfig": { "access": "public", "registry": "https://registry.npmjs.org/" }, "scripts": { "build": "tsup", "clean": "npx rimraf ./dist", "lint": "bun biome lint .", "lint:fix": "bun biome lint --apply-unsafe .", "release": "pnpm publish --no-git-check", "release:canary": "bash ../../.github/canary.sh && node ../../scripts/build.js canary && pnpm publish --no-git-check", "start": "tsup --watch", "test": "vitest --passWithNoTests", "typecheck": "tsc -p ./tsconfig.json --noEmit --emitDeclarationOnly false" } }