|
1 | 1 | {
|
2 | 2 | "$schema": "https://json.schemastore.org/package.json",
|
3 | 3 | "name": "vue-codemirror6",
|
4 |
| - "version": "1.3.5", |
| 4 | + "version": "1.3.6", |
5 | 5 | "license": "MIT",
|
6 | 6 | "description": "CodeMirror6 Component for vue2 and vue3.",
|
7 | 7 | "keywords": [
|
|
36 | 36 | },
|
37 | 37 | "main": "dist/index.umd.js",
|
38 | 38 | "module": "dist/index.es.js",
|
39 |
| - "types": "dist/index.d.ts", |
| 39 | + "types": "dist/src/index.d.ts", |
40 | 40 | "exports": {
|
41 | 41 | ".": {
|
42 | 42 | "import": "./dist/index.es.js",
|
43 | 43 | "require": "./dist/index.umd.js",
|
44 |
| - "types": "./dist/index.d.ts" |
| 44 | + "types": "./dist/src/index.d.ts" |
45 | 45 | }
|
46 | 46 | },
|
47 | 47 | "files": [
|
|
53 | 53 | "./sfc": "./src/components/CodeMirror.ts"
|
54 | 54 | },
|
55 | 55 | "engines": {
|
56 |
| - "pnpm": ">=9.11.0" |
| 56 | + "pnpm": ">=9.12.3" |
57 | 57 | },
|
58 |
| - "packageManager": "pnpm@9.11.0", |
| 58 | + "packageManager": "pnpm@9.12.3", |
59 | 59 | "sideEffects": false,
|
60 | 60 | "scripts": {
|
61 | 61 | "dev": "vite",
|
|
67 | 67 | "lint": "eslint . --fix --cache --cache-location ./node_modules/.vite/vite-plugin-eslint && prettier . --write",
|
68 | 68 | "preview": "vite preview --mode=docs",
|
69 | 69 | "build-only": "vite build",
|
70 |
| - "type-check": "vue-tsc --build --force", |
| 70 | + "type-check": "vue-tsc --declaration --emitDeclarationOnly", |
71 | 71 | "prepare": "husky",
|
72 | 72 | "version": "auto-changelog -p && git add CHANGELOG.md"
|
73 | 73 | },
|
74 | 74 | "dependencies": {
|
75 |
| - "@codemirror/commands": "^6.6.2", |
| 75 | + "@codemirror/commands": "^6.7.1", |
76 | 76 | "@codemirror/language": "^6.10.3",
|
77 | 77 | "@codemirror/lint": "^6.8.2",
|
78 | 78 | "@codemirror/state": "^6.4.1",
|
79 |
| - "@codemirror/view": "^6.34.1", |
| 79 | + "@codemirror/view": "^6.34.2", |
80 | 80 | "codemirror": "^6.0.1",
|
81 | 81 | "style-mod": "^4.1.2",
|
| 82 | + "vue-codemirror6": "file:", |
82 | 83 | "vue-demi": "latest"
|
83 | 84 | },
|
84 | 85 | "peerDependencies": {
|
85 | 86 | "vue": "^2.7.14 || ^3.4"
|
86 | 87 | },
|
87 | 88 | "devDependencies": {
|
| 89 | + "@codemirror/autocomplete": "^6.18.2", |
88 | 90 | "@codemirror/lang-javascript": "^6.2.2",
|
89 | 91 | "@codemirror/lang-json": "^6.0.1",
|
90 | 92 | "@codemirror/lang-markdown": "^6.3.0",
|
91 |
| - "@codemirror/lang-vue": "0.1.2", |
92 |
| - "@eslint/js": "^9.11.1", |
93 |
| - "@tsconfig/node-lts": "^20.1.3", |
94 |
| - "@types/node": "^22.7.4", |
95 |
| - "@typescript-eslint/eslint-plugin": "^8.8.0", |
| 93 | + "@codemirror/lang-vue": "^0.1.3", |
| 94 | + "@codemirror/search": "^6.5.7", |
| 95 | + "@eslint/js": "^9.14.0", |
| 96 | + "@tsconfig/node-lts": "^22.0.0", |
| 97 | + "@types/node": "^22.9.0", |
| 98 | + "@typescript-eslint/eslint-plugin": "^8.13.0", |
96 | 99 | "@vitejs/plugin-vue": "^5.1.4",
|
97 |
| - "@vue/compiler-sfc": "^3.5.10", |
98 |
| - "@vue/eslint-config-prettier": "^9.0.0", |
| 100 | + "@vue/compiler-sfc": "^3.5.12", |
| 101 | + "@vue/eslint-config-prettier": "^10.1.0", |
99 | 102 | "@vue/tsconfig": "^0.5.1",
|
100 |
| - "@vueuse/core": "^11.1.0", |
| 103 | + "@vueuse/core": "^11.2.0", |
101 | 104 | "bootstrap": "^5.3.3",
|
102 |
| - "eslint": "^9.11.1", |
| 105 | + "eslint": "^9.14.0", |
103 | 106 | "eslint-import-resolver-alias": "^1.1.2",
|
104 | 107 | "eslint-import-resolver-typescript": "^3.6.3",
|
105 |
| - "eslint-linter-browserify": "^9.11.1", |
106 |
| - "eslint-plugin-import": "^2.30.0", |
| 108 | + "eslint-linter-browserify": "^9.14.0", |
| 109 | + "eslint-plugin-import": "^2.31.0", |
107 | 110 | "eslint-plugin-tsdoc": "^0.3.0",
|
108 |
| - "eslint-plugin-vue": "^9.28.0", |
| 111 | + "eslint-plugin-vue": "^9.30.0", |
109 | 112 | "eslint-plugin-vuejs-accessibility": "^2.4.1",
|
110 | 113 | "eslint-plugin-yaml": "^1.0.3",
|
111 | 114 | "husky": "^9.1.6",
|
|
114 | 117 | "prettier": "^3.3.3",
|
115 | 118 | "rimraf": "^6.0.1",
|
116 | 119 | "rollup-plugin-visualizer": "^5.12.0",
|
117 |
| - "sass": "^1.79.4", |
118 |
| - "typescript": "5.4.2", |
119 |
| - "typescript-eslint": "^8.8.0", |
120 |
| - "vite": "^5.4.8", |
| 120 | + "sass": "^1.80.6", |
| 121 | + "typescript": "~5.6.3", |
| 122 | + "typescript-eslint": "^8.13.0", |
| 123 | + "vite": "^5.4.10", |
121 | 124 | "vite-plugin-banner": "^0.8.0",
|
122 | 125 | "vite-plugin-checker": "^0.8.0",
|
123 |
| - "vite-plugin-dts": "^4.2.3", |
124 |
| - "vue": "^3.5.10", |
| 126 | + "vite-plugin-dts": "^4.3.0", |
| 127 | + "vue": "^3.5.12", |
125 | 128 | "vue-eslint-parser": "^9.4.3",
|
126 | 129 | "vue-markdown-wasm": "^0.4.0",
|
127 |
| - "vue-tsc": "^2.1.6" |
| 130 | + "vue-tsc": "^2.1.10" |
128 | 131 | },
|
129 | 132 | "husky": {
|
130 | 133 | "hooks": {
|
|
0 commit comments