@kubb/core
Version:
Core functionality for Kubb's plugin-based code generation system, providing the foundation for transforming OpenAPI specifications.
119 lines • 2.8 kB
JSON
{
"name": "@kubb/core",
"version": "4.18.0",
"description": "Core functionality for Kubb's plugin-based code generation system, providing the foundation for transforming OpenAPI specifications.",
"keywords": [
"typescript",
"plugins",
"plugin-system",
"code-generator",
"codegen",
"openapi",
"swagger",
"kubb"
],
"repository": {
"type": "git",
"url": "https://github.com/kubb-labs/kubb.git",
"directory": "packages/core"
},
"license": "MIT",
"author": "stijnvanhulle",
"sideEffects": false,
"type": "module",
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.js"
},
"./fs": {
"require": "./dist/fs.cjs",
"import": "./dist/fs.js"
},
"./hooks": {
"require": "./dist/hooks.cjs",
"import": "./dist/hooks.js"
},
"./transformers": {
"require": "./dist/transformers.cjs",
"import": "./dist/transformers.js"
},
"./utils": {
"require": "./dist/utils.cjs",
"import": "./dist/utils.js"
},
"./package.json": "./package.json"
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.cts",
"typesVersions": {
"*": {
"utils": [
"./dist/utils.d.ts"
],
"transformers": [
"./dist/transformers.d.ts"
],
"fs": [
"./dist/fs.d.ts"
],
"hooks": [
"./dist/hooks.d.ts"
]
}
},
"files": [
"src",
"dist",
"*.d.ts",
"*.d.cts",
"schema.json",
"!/**/**.test.**",
"!/**/__tests__/**"
],
"size-limit": [
{
"path": "./dist/*.js",
"limit": "510 KiB",
"gzip": true
}
],
"dependencies": {
"@kubb/react-fabric": "0.11.8",
"camelcase": "^8.0.0",
"find-up": "^7.0.0",
"fs-extra": "^11.3.3",
"jiti": "^2.6.1",
"js-runtime": "^0.0.8",
"natural-orderby": "^5.0.0",
"p-limit": "^7.2.0",
"remeda": "^2.33.4",
"semver": "^7.7.3"
},
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/semver": "^7.7.1"
},
"peerDependencies": {
"@kubb/react-fabric": "0.11.8"
},
"engines": {
"node": ">=20"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"build": "tsdown && size-limit",
"clean": "npx rimraf ./dist",
"lint": "bun biome lint .",
"lint:fix": "bun biome lint --fix --unsafe .",
"release": "pnpm publish --no-git-check",
"release:canary": "bash ../../.github/canary.sh && node ../../scripts/build.js canary && pnpm publish --no-git-check",
"start": "tsdown --watch",
"test": "vitest --passWithNoTests",
"typecheck": "tsc -p ./tsconfig.json --noEmit --emitDeclarationOnly false"
}
}