UNPKG

@scalar/swagger-editor

Version:

an editor which is tailored to write OpenAPI spec

69 lines 1.82 kB
{ "name": "@scalar/swagger-editor", "description": "an editor which is tailored to write OpenAPI spec", "license": "MIT", "author": "Scalar (https://github.com/scalar)", "homepage": "https://github.com/scalar/scalar", "bugs": "https://github.com/scalar/scalar/issues/new/choose", "keywords": [ "api", "editor", "openapi", "openapi", "spec", "swagger" ], "version": "1.0.2", "engines": { "node": ">=18" }, "type": "module", "main": "./dist/index.js", "types": "dist/index.d.ts", "exports": { "import": "./dist/index.js" }, "files": [ "dist", "CHANGELOG.md" ], "module": "./dist/index.js", "repository": { "type": "git", "url": "https://github.com/scalar/scalar.git", "directory": "packages/swagger-editor" }, "devDependencies": { "@vitejs/plugin-vue": "^5.0.4", "@vitest/coverage-v8": "^1.2.2", "@vueuse/core": "^10.4.1", "tsc-alias": "^1.8.8", "vite": "^5.1.1", "vite-plugin-css-injected-by-js": "^3.4.0", "vitest": "^1.2.2", "vue": "^3.3.0", "vue-tsc": "^1.8.19", "@scalar/components": "0.4.4", "@scalar/oas-utils": "0.1.0", "@scalar/themes": "0.6.4", "@scalar/use-codemirror": "0.9.0" }, "peerDependencies": { "vue": "^3.3.0", "@vueuse/core": "^10.4.1", "@scalar/components": "0.4.4", "@scalar/oas-utils": "0.1.0", "@scalar/themes": "0.6.4", "@scalar/use-codemirror": "0.9.0" }, "scripts": { "build": "vite build && pnpm types:build && tsc-alias -p tsconfig.build.json", "dev": "vite", "lint:check": "eslint .", "lint:fix": "eslint . --fix", "preview": "vite preview", "test": "vitest", "types:build": "vue-tsc -p tsconfig.build.json", "types:check": "vue-tsc --noEmit --skipLibCheck --composite false" } }