UNPKG

simple-syntax-highlighter

Version:
74 lines 2.14 kB
{ "name": "simple-syntax-highlighter", "version": "3.1.1", "description": "No chi-chi syntax highlighter for Vue.js 3 (and 2).", "author": "Antoni Andre <antoniandre.web@gmail.com>", "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.es.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/*" }, "type": "module", "sideEffects": [ "dist/*.css" ], "keywords": [ "syntax highlighting", "code highlighting", "vue syntax highlighter", "vue component", "highlight.js alternative", "syntax", "vue ui", "vue 3" ], "devDependencies": { "@eslint/js": "^9.15.0", "@mdi/font": "^7.4.47", "@vitejs/plugin-vue": "^5.2.0", "autoprefixer": "^10.4.20", "eslint": "~9.9.1", "eslint-config-standard": "^17.1.0", "eslint-plugin-import": "^2.31.0", "eslint-plugin-n": "^17.14.0", "eslint-plugin-promise": "^7.2.0", "eslint-plugin-vue": "^9.31.0", "globals": "^15.12.0", "postcss": "^8.4.49", "pug": "^3.0.3", "rollup-plugin-delete": "^2.1.0", "sass": "^1.81.0", "standard": "^17.1.2", "vite": "^5.4.11", "vue": "^3.5.13", "wave-ui": "^3.18.0" }, "peerDependencies": { "vue": "^3.2.0" }, "engines": { "node": ">=16.0.0", "pnpm": ">=8.0.0" }, "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" } }