UNPKG

@kubb/plugin-cypress

Version:

Cypress test generator plugin for Kubb, creating end-to-end tests from OpenAPI specifications for automated API testing.

119 lines 2.94 kB
{ "name": "@kubb/plugin-cypress", "version": "3.16.1", "description": "Cypress test generator plugin for Kubb, creating end-to-end tests from OpenAPI specifications for automated API testing.", "keywords": [ "cypress", "e2e-testing", "end-to-end", "testing", "api-testing", "test-automation", "typescript", "openapi", "swagger", "code-generator", "codegen", "plugins", "kubb" ], "repository": { "type": "git", "url": "https://github.com/kubb-labs/kubb.git", "directory": "packages/plugin-cypress" }, "license": "MIT", "author": "stijnvanhulle", "sideEffects": false, "type": "module", "exports": { ".": { "import": "./dist/index.js", "require": "./dist/index.cjs", "default": "./dist/index.cjs" }, "./utils": { "import": "./dist/utils.js", "require": "./dist/utils.cjs", "default": "./dist/utils.cjs" }, "./hooks": { "import": "./dist/hooks.js", "require": "./dist/hooks.cjs", "default": "./dist/hooks.cjs" }, "./components": { "import": "./dist/components.js", "require": "./dist/components.cjs", "default": "./dist/components.cjs" }, "./generators": { "import": "./dist/generators.js", "require": "./dist/generators.cjs", "default": "./dist/generators.cjs" }, "./package.json": "./package.json", "./*": "./*" }, "main": "dist/index.cjs", "module": "dist/index.js", "types": "./dist/index.d.ts", "typesVersions": { "*": { "utils": [ "./dist/utils.d.ts" ], "hooks": [ "./dist/hooks.d.ts" ], "components": [ "./dist/components.d.ts" ], "generators": [ "./dist/generators.d.ts" ] } }, "files": [ "src", "dist", "!/**/**.test.**", "!/**/__tests__/**" ], "dependencies": { "@kubb/core": "3.16.1", "@kubb/oas": "3.16.1", "@kubb/plugin-oas": "3.16.1", "@kubb/plugin-ts": "3.16.1", "@kubb/react": "3.16.1" }, "devDependencies": { "@types/react": "^18.3.23", "react": "^18.3.1", "tsup": "^8.5.0", "typescript": "^5.8.3", "@kubb/config-ts": "3.16.1", "@kubb/config-tsup": "3.16.1" }, "peerDependencies": { "@kubb/react": "^3.0.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--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": "tsup --watch", "test": "vitest --passWithNoTests", "typecheck": "tsc -p ./tsconfig.json --noEmit --emitDeclarationOnly false" } }