@scalar/use-codemirror
Version:
CodeMirror for Vue
83 lines • 2.21 kB
JSON
{
"name": "@scalar/use-codemirror",
"description": "CodeMirror for Vue",
"license": "MIT",
"author": "Scalar (https://github.com/scalar)",
"homepage": "https://github.com/scalar/scalar",
"bugs": "https://github.com/scalar/scalar/issues/new/choose",
"repository": {
"type": "git",
"url": "git+https://github.com/scalar/scalar.git",
"directory": "packages/use-codemirror"
},
"keywords": [
"codemirror",
"composable",
"vue",
"vue3"
],
"version": "0.12.39",
"engines": {
"node": ">=20"
},
"type": "module",
"main": "dist/index.js",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./hooks": {
"import": "./dist/hooks/index.js",
"types": "./dist/hooks/index.d.ts",
"default": "./dist/hooks/index.js"
},
"./themes": {
"import": "./dist/themes/index.js",
"types": "./dist/themes/index.d.ts",
"default": "./dist/themes/index.js"
}
},
"files": [
"dist",
"CHANGELOG.md"
],
"module": "dist/index.js",
"dependencies": {
"@codemirror/autocomplete": "^6.18.3",
"@codemirror/commands": "^6.7.1",
"@codemirror/lang-css": "^6.3.1",
"@codemirror/lang-html": "^6.4.8",
"@codemirror/lang-json": "^6.0.0",
"@codemirror/lang-xml": "^6.0.0",
"@codemirror/lang-yaml": "^6.1.2",
"@codemirror/language": "^6.10.7",
"@codemirror/lint": "^6.8.4",
"@codemirror/state": "^6.5.0",
"@codemirror/view": "^6.35.3",
"@lezer/common": "^1.2.3",
"@lezer/highlight": "^1.2.1",
"@replit/codemirror-css-color-picker": "^6.3.0",
"codemirror": "^6.0.0",
"vue": "^3.5.17",
"@scalar/components": "0.14.38"
},
"devDependencies": {
"@vitejs/plugin-vue": "6.0.1",
"vite": "7.1.5",
"vitest": "3.2.4",
"vue": "^3.5.17",
"@scalar/build-tooling": "0.2.7",
"@scalar/themes": "0.13.19"
},
"scripts": {
"build": "scalar-build-esbuild",
"dev": "vite .",
"lint:check": "scalar-lint-check",
"lint:fix": "scalar-lint-fix",
"test": "vitest",
"types:build": "scalar-types-build",
"types:check": "scalar-types-check-vue"
}
}