UNPKG

openapi-formkit

Version:

Transform an OpenAPI document to a FormKit schema

48 lines (47 loc) 1.1 kB
{ "name": "openapi-formkit", "version": "0.3.3", "description": "Transform an OpenAPI document to a FormKit schema", "main": "lib/index.js", "types": "lib/index.d.ts", "author": { "name": "Thibault Poisson", "email": "thibault_poisson@orange.fr" }, "repository": { "type": "git", "url": "https://github.com/OrIOg/openapi-formkit/" }, "license": "MIT", "files": [ "./lib/**/*", "./src/types/**/*" ], "typings": "./lib/index.d.ts", "scripts": { "dev": "tsnd --respawn --files src/index.ts", "test": "jest", "build": "tsc", "prebuild": "npm run test", "postbuild": "cp -R ./src/types/ ./lib/", "prepublishOnly": "npm run build" }, "keywords": [ "OpenAPI", "FormKit", "Converter" ], "devDependencies": { "@formkit/core": "^1.0.0-beta.6", "@types/jest": "^27.4.1", "ts-jest": "^28.0.5", "ts-node": "^10.7.0", "ts-node-dev": "^2.0.0", "typescript": "^4.6.2" }, "dependencies": { "openapi-types": "^12.0.0", "openapi3-ts": "^2.0.2", "swagger-parser": "^10.0.3" } }