-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
144 lines (144 loc) · 4.01 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
{
"$schema": "https://json.schemastore.org/package.json",
"name": "vue-codemirror6",
"version": "1.3.8",
"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": "logue@hotmail.co.jp",
"url": "https://logue.dev/"
},
"homepage": "https://github.com/logue/vue-codemirror6",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/logue/vue-codemirror6.git"
},
"bugs": {
"url": "https://github.com/logue/vue-codemirror6/issues"
},
"main": "dist/index.umd.js",
"module": "dist/index.es.js",
"types": "dist/src/index.d.ts",
"exports": {
".": {
"import": "./dist/index.es.js",
"require": "./dist/index.umd.js",
"types": "./dist/src/index.d.ts"
}
},
"files": [
"CHANGELOG.md",
"/dist",
"./src/components/CodeMirror.ts"
],
"browser": {
"./sfc": "./src/components/CodeMirror.ts"
},
"engines": {
"pnpm": ">=9.14.2"
},
"packageManager": "pnpm@9.14.2",
"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.7.1",
"@codemirror/language": "^6.10.3",
"@codemirror/lint": "^6.8.3",
"@codemirror/state": "^6.4.1",
"@codemirror/view": "^6.35.0",
"codemirror": "^6.0.1",
"style-mod": "^4.1.2",
"vue-demi": "latest"
},
"peerDependencies": {
"vue": "^2.7.14 || ^3.4"
},
"devDependencies": {
"@codemirror/autocomplete": "^6.18.3",
"@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.15.0",
"@tsconfig/node-lts": "^22.0.0",
"@types/node": "^22.9.1",
"@typescript-eslint/eslint-plugin": "^8.15.0",
"@vitejs/plugin-vue": "^5.2.0",
"@vue/compiler-sfc": "^3.5.13",
"@vue/eslint-config-prettier": "^10.1.0",
"@vue/tsconfig": "^0.6.0",
"@vueuse/core": "^11.3.0",
"bootstrap": "^5.3.3",
"eslint": "^9.15.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-linter-browserify": "^9.15.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-tsdoc": "^0.3.0",
"eslint-plugin-vue": "^9.31.0",
"eslint-plugin-vuejs-accessibility": "^2.4.1",
"eslint-plugin-yaml": "^1.0.3",
"husky": "^9.1.7",
"lint-staged": "^15.2.10",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"rollup-plugin-visualizer": "^5.12.0",
"sass": "^1.81.0",
"typescript": "^5.6.3",
"typescript-eslint": "^8.15.0",
"vite": "^5.4.11",
"vite-plugin-banner": "^0.8.0",
"vite-plugin-checker": "^0.8.0",
"vite-plugin-dts": "^4.3.0",
"vue": "^3.5.13",
"vue-eslint-parser": "^9.4.3",
"vue-markdown-wasm": "^0.4.0",
"vue-tsc": "^2.1.10"
},
"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"
}
}