-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
140 lines (140 loc) · 4.11 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
{
"name": "@wdns/vue-code-block",
"version": "2.3.3",
"description": "Vue 3 CodeBlock - Highlight your code with ease using this syntax highlighting component powered by PrismJS or Highlight.js.",
"private": false,
"publishConfig": {
"access": "public"
},
"main": "dist/vue-code-block.cjs.js",
"module": "dist/vue-code-block.es.js",
"types": "dist/plugin/types/index.d.ts",
"scripts": {
"dev": "NODE_OPTIONS='--no-warnings' vite",
"watch": "pnpm dev",
"play": "sh src/playground/configs/build.sh && NODE_ENV=playground pnpm dev",
"sass": "sass --watch --no-source-map src/plugin/themes/scss/:src/plugin/themes/css",
"sass:min": "sass --style compressed --watch --no-source-map src/plugin/themes/scss/:src/plugin/themes/css/min",
"build": "vue-tsc -p tsconfig.dist.json && npm run test:build && vite build --config vite.build.config.mts",
"build:docs": "vite build",
"predeploy": "npm run build",
"deploy": "gh-pages -d docs",
"prepublishOnly": "npm run build",
"lint": "eslint src/**/*.{ts,vue} --max-warnings 4",
"prepare": "husky",
"test:dev": "NODE_OPTIONS='--no-warnings' vitest",
"test:commit": "vitest --run --bail 1",
"test:build": "vitest --run --bail 1 --reporter dot"
},
"lint-staged": {
"src/**/*.{js,ts,vue}": [
"npm run lint"
]
},
"author": "WebDevNerdStuff & Bunnies... lots and lots of bunnies! <[email protected]> (https://webdevnerdstuff.com)",
"funding": [
{
"type": "paypal",
"url": "https://paypal.me/webdevnerdstuff"
},
{
"type": "patreon",
"url": "https://www.patreon.com/WebDevNerdStuff"
}
],
"license": "MIT",
"files": [
"dist/*",
"LICENSE.md",
"README.md"
],
"repository": "https://github.com/webdevnerdstuff/vue-code-block",
"bugs": {
"url": "https://github.com/webdevnerdstuff/vue-code-block/issues"
},
"homepage": "https://webdevnerdstuff.github.io/vue-code-block/",
"keywords": [
"vue-code-block",
"code",
"pre",
"highlight",
"syntax",
"vue",
"vue3",
"prism",
"prismjs",
"highlightjs",
"highlight.js",
"component",
"javascript",
"typescript",
"neon bunny",
"webdevnerdstuff",
"wdns"
],
"dependencies": {
"highlight.js": "^11.8.0",
"prismjs": "^1.29.0",
"ua-parser-js": "^1.0.38",
"vue": "^3.4.31"
},
"devDependencies": {
"@fortawesome/fontawesome-svg-core": "^6.5.2",
"@fortawesome/free-brands-svg-icons": "^6.5.2",
"@fortawesome/free-regular-svg-icons": "^6.5.2",
"@fortawesome/free-solid-svg-icons": "^6.5.2",
"@fortawesome/vue-fontawesome": "^3.0.8",
"@mdi/font": "^7.4.47",
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@stylistic/stylelint-plugin": "^2.1.2",
"@types/node": "^20.14.10",
"@types/prismjs": "^1.26.4",
"@typescript-eslint/eslint-plugin": "^6.18.1",
"@typescript-eslint/parser": "^6.18.1",
"@vitejs/plugin-vue": "^5.0.5",
"@vue/cli-plugin-eslint": "^5.0.8",
"@vue/cli-service": "^5.0.8",
"@vue/compiler-sfc": "^3.4.31",
"@vue/eslint-config-typescript": "^12.0.0",
"@vue/test-utils": "^2.4.6",
"autoprefixer": "^10.4.19",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-vue": "^9.20.0",
"gh-pages": "^6.1.1",
"husky": "^9.0.11",
"jsdom": "^24.1.0",
"lint-staged": "^15.2.7",
"pinia": "^2.1.7",
"postcss": "^8.4.39",
"postcss-html": "^1.7.0",
"postcss-scss": "^4.0.9",
"prettier": "^3.3.2",
"rollup": "^4.18.0",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-scss": "^4.0.0",
"rollup-plugin-typescript2": "^0.36.0",
"sass": "^1.77.6",
"stylelint": "^16.6.1",
"stylelint-config-standard": "^36.0.1",
"stylelint-order": "^6.0.4",
"stylelint-scss": "^6.3.2",
"typescript": "^5.3.3",
"unplugin-auto-import": "^0.17.6",
"vite": "^5.3.3",
"vite-plugin-css-injected-by-js": "^3.5.1",
"vite-plugin-dts": "^3.9.1",
"vite-plugin-eslint": "^1.8.1",
"vite-plugin-static-copy": "^1.0.6",
"vite-plugin-stylelint": "^5.3.1",
"vite-plugin-vuetify": "^2.0.3",
"vitest": "^1.6.0",
"vue-tsc": "^2.0.26",
"vuetify": "^3.4.10",
"webfontloader": "^1.6.28"
}
}