-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpackage.json
146 lines (146 loc) · 4.07 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
{
"$schema": "https://json.schemastore.org/package.json",
"name": "vue-codemirror6",
"version": "1.3.10",
"license": "MIT",
"description": "CodeMirror6 Component for vue2 and vue3.",
"keywords": [
"vuejs",
"vue",
"vue-components",
"vue-codemirror",
"code-editor",
"text-editor",
"vue2",
"vue3",
"web-editor",
"vue-plugin",
"vue-component",
"codemirror-editor",
"vue-resource",
"codemirror6"
],
"type": "module",
"author": {
"name": "Logue",
"email": "[email protected]",
"url": "https://logue.dev/"
},
"homepage": "https://github.com/logue/vue-codemirror6",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/logue/vue-codemirror6.git"
},
"bugs": {
"url": "https://github.com/logue/vue-codemirror6/issues"
},
"main": "dist/index.umd.js",
"module": "dist/index.es.js",
"jsdelivr": "dist/index.iife.js",
"unpkg": "dist/index.iife.js",
"types": "dist/src/index.d.ts",
"exports": {
".": {
"import": "./dist/index.es.js",
"types": "./dist/src/index.d.ts"
}
},
"files": [
"CHANGELOG.md",
"/dist",
"./src/components/CodeMirror.ts"
],
"browser": {
"./sfc": "./src/components/CodeMirror.ts"
},
"engines": {
"pnpm": ">=9.15.0"
},
"packageManager": "[email protected]",
"sideEffects": false,
"scripts": {
"dev": "vite",
"clean": "rimraf node_modules/.vite",
"build": "run-p type-check \"build-only {@}\" --",
"build:analyze": "vite build --mode=analyze",
"build:clean": "rimraf dist docs",
"build:docs": "vite build --mode=docs",
"lint": "eslint . --fix --cache --cache-location ./node_modules/.vite/vite-plugin-eslint && prettier . --write",
"preview": "vite preview --mode=docs",
"build-only": "vite build",
"type-check": "vue-tsc --declaration --emitDeclarationOnly",
"prepare": "husky",
"version": "auto-changelog -p && git add CHANGELOG.md"
},
"dependencies": {
"@codemirror/commands": "^6.8.0",
"@codemirror/language": "^6.10.8",
"@codemirror/lint": "^6.8.4",
"@codemirror/state": "^6.5.0",
"@codemirror/view": "^6.36.1",
"codemirror": "^6.0.1",
"style-mod": "^4.1.2",
"vue-demi": "latest"
},
"peerDependencies": {
"vue": "^2.7.14 || ^3.4"
},
"devDependencies": {
"@codemirror/autocomplete": "^6.18.4",
"@codemirror/lang-javascript": "^6.2.2",
"@codemirror/lang-json": "^6.0.1",
"@codemirror/lang-markdown": "^6.3.1",
"@codemirror/lang-vue": "^0.1.3",
"@codemirror/search": "^6.5.8",
"@eslint/js": "^9.17.0",
"@tsconfig/node-lts": "^22.0.1",
"@types/node": "^22.10.5",
"@typescript-eslint/eslint-plugin": "^8.19.1",
"@vitejs/plugin-vue": "^5.2.1",
"@vue/compiler-sfc": "^3.5.13",
"@vue/eslint-config-prettier": "^10.1.0",
"@vue/tsconfig": "^0.7.0",
"@vueuse/core": "^12.3.0",
"bootstrap": "^5.3.3",
"eslint": "^9.17.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-linter-browserify": "^9.17.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-tsdoc": "^0.4.0",
"eslint-plugin-vue": "^9.32.0",
"eslint-plugin-vuejs-accessibility": "^2.4.1",
"eslint-plugin-yaml": "^1.0.3",
"husky": "^9.1.7",
"lint-staged": "^15.3.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.4.2",
"rimraf": "^6.0.1",
"rollup-plugin-visualizer": "^5.14.0",
"sass": "^1.83.1",
"supports-color": "^10.0.0",
"typescript": "^5.7.3",
"typescript-eslint": "^8.19.1",
"vite": "^6.0.7",
"vite-plugin-banner": "^0.8.0",
"vite-plugin-checker": "^0.8.0",
"vite-plugin-dts": "^4.4.0",
"vue": "^3.5.13",
"vue-eslint-parser": "^9.4.3",
"vue-markdown-wasm": "^0.5.1",
"vue-tsc": "^2.2.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,json,htm,html,vue}": "eslint --fix --cache --cache-location ./node_modules/.vite/vite-plugin-eslint",
"*": "prettier -w -u"
},
"resolutions": {
"json5": ">=2.2.3",
"yaml": ">=2.6.0"
}
}