@kubb/plugin-faker
Version:
Faker.js data generator plugin for Kubb, creating realistic mock data from OpenAPI specifications for development and testing.
98 lines • 2.36 kB
JSON
{
"name": "@kubb/plugin-faker",
"version": "4.8.1",
"description": "Faker.js data generator plugin for Kubb, creating realistic mock data from OpenAPI specifications for development and testing.",
"keywords": [
"faker",
"faker.js",
"mock-data",
"data-generation",
"testing",
"development",
"typescript",
"openapi",
"swagger",
"code-generator",
"codegen",
"plugins",
"kubb"
],
"repository": {
"type": "git",
"url": "https://github.com/kubb-labs/kubb.git",
"directory": "packages/plugin-faker"
},
"license": "MIT",
"author": "stijnvanhulle",
"sideEffects": false,
"type": "module",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./components": {
"import": "./dist/components.js",
"require": "./dist/components.cjs"
},
"./generators": {
"import": "./dist/generators.js",
"require": "./dist/generators.cjs"
},
"./package.json": "./package.json"
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.cts",
"typesVersions": {
"*": {
"components": [
"./dist/components.d.ts"
],
"generators": [
"./dist/generators.d.ts"
]
}
},
"files": [
"src",
"dist",
"!/**/**.test.**",
"!/**/__tests__/**"
],
"size-limit": [
{
"path": "./dist/*.js",
"limit": "510 KiB",
"gzip": true
}
],
"dependencies": {
"@kubb/react-fabric": "0.5.4",
"@kubb/core": "4.8.1",
"@kubb/oas": "4.8.1",
"@kubb/plugin-oas": "4.8.1",
"@kubb/plugin-ts": "4.8.1"
},
"devDependencies": {
"@kubb/plugin-oas": "4.8.1"
},
"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"
}
}