mirror of
https://github.com/LukeHagar/varsity.git
synced 2025-12-06 04:22:00 +00:00
78 lines
1.7 KiB
JSON
78 lines
1.7 KiB
JSON
{
|
|
"name": "varsity",
|
|
"version": "1.0.4",
|
|
"description": "Comprehensive OpenAPI parsing and validation library",
|
|
"type": "module",
|
|
"main": "./dist/index.js",
|
|
"module": "./dist/index.js",
|
|
"exports": {
|
|
".": {
|
|
"import": "./dist/index.js",
|
|
"types": "./index.ts"
|
|
},
|
|
"./cli": {
|
|
"import": "./dist/cli.js",
|
|
"types": "./src/cli.ts"
|
|
}
|
|
},
|
|
"bin": {
|
|
"varsity": "dist/cli.js"
|
|
},
|
|
"scripts": {
|
|
"start": "bun run src/cli.ts",
|
|
"dev": "bun run --watch src/cli.ts",
|
|
"test": "bun test",
|
|
"build": "bun build index.ts --outdir dist --target node --format esm",
|
|
"build:cli": "bun build src/cli.ts --outdir dist --target node --format esm --outfile varsity",
|
|
"build:all": "bun run build && bun run build:cli",
|
|
"lint": "bun run --bun tsc --noEmit",
|
|
"prepublishOnly": "bun run build:all"
|
|
},
|
|
"keywords": [
|
|
"openapi",
|
|
"swagger",
|
|
"validation",
|
|
"parser",
|
|
"api",
|
|
"specification",
|
|
"cli",
|
|
"typescript",
|
|
"bun",
|
|
"json-schema",
|
|
"api-validation",
|
|
"openapi-validator"
|
|
],
|
|
"author": "Luke",
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/LukeHagar/varsity"
|
|
},
|
|
"homepage": "https://github.com/LukeHagar/varsity#readme",
|
|
"bugs": {
|
|
"url": "https://github.com/LukeHagar/varsity/issues"
|
|
},
|
|
"files": [
|
|
"index.ts",
|
|
"src/",
|
|
"dist/",
|
|
"README.md",
|
|
"LICENSE"
|
|
],
|
|
"devDependencies": {
|
|
"@types/bun": "latest",
|
|
"@types/js-yaml": "^4.0.9"
|
|
},
|
|
"peerDependencies": {
|
|
"typescript": "^5"
|
|
},
|
|
"dependencies": {
|
|
"@types/node": "^24.6.1",
|
|
"ajv": "^8.17.1",
|
|
"ajv-formats": "^3.0.1",
|
|
"commander": "^14.0.1",
|
|
"js-yaml": "^4.1.0",
|
|
"oas-types": "^1.0.6"
|
|
}
|
|
}
|