-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
65 lines (65 loc) · 1.91 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
{
"name": "simple-syntax-highlighter",
"version": "3.0.10",
"description": "No chi-chi syntax highlighter for Vue.js 3 (and 2).",
"author": "Antoni Andre <[email protected]>",
"homepage": "https://antoniandre.github.io/simple-syntax-highlighter",
"repository": "https://github.com/antoniandre/simple-syntax-highlighter",
"license": "MIT",
"funding": "https://github.com/sponsors/antoniandre",
"main": "dist/sshpre.cjs.js",
"unpkg": "dist/sshpre.umd.js",
"jsdelivr": "dist/sshpre.umd.js",
"module": "./dist/sshpre.es.js",
"files": [
"dist/"
],
"exports": {
".": {
"import": "./dist/sshpre.es.js",
"require": "./dist/sshpre.umd.js"
},
"./package.json": "./package.json",
"./dist/*": "./dist/*"
},
"keywords": [
"syntax highlighter",
"code highlighter",
"code mirror",
"vue",
"vue3",
"vuejs",
"ui"
],
"scripts": {
"dev": "vite",
"build": "vite build --base /simple-syntax-highlighter/",
"build-bundle": "BUNDLE=true vite build && mv ./dist/style.css ./dist/sshpre.css",
"serve": "vite preview --base /simple-syntax-highlighter/",
"publish-doc": "npm run build && npm run build-bundle && git add . && git commit -m 'Publish documentation on Github.' && git push && git push --tag"
},
"devDependencies": {
"@eslint/js": "^9.9.0",
"@mdi/font": "^7.4.47",
"@vitejs/plugin-vue": "^5.1.2",
"autoprefixer": "^10.4.20",
"eslint": "~9.9.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^17.10.2",
"eslint-plugin-promise": "^7.1.0",
"eslint-plugin-vue": "^9.27.0",
"globals": "^15.9.0",
"postcss": "^8.4.41",
"pug": "^3.0.3",
"rollup-plugin-delete": "^2.0.0",
"sass": "^1.77.8",
"standard": "^17.1.0",
"vite": "^5.4.1",
"vue": "^3.4.38",
"wave-ui": "^3.14.1"
},
"peerDependencies": {
"vue": "^3.2.0"
}
}