-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
58 lines (58 loc) · 1.26 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
{
"name": "vue-hljs",
"version": "3.0.1",
"description": "Highlight.js plugin for Vue.js 3.0",
"main": "./dist/vue-hljs.umd.js",
"module": "./dist/vue-hljs.es.js",
"exports": {
".": {
"import": "./dist/my-lib.es.js",
"require": "./dist/my-lib.umd.js"
}
},
"scripts": {
"dev": "vite",
"build": "vite build",
"test": "vitest --run",
"coverage": "vitest run --coverage",
"clean": "rm -rf dist/"
},
"repository": {
"type": "git",
"url": "https://github.com/sunskyxh/vue-hljs.git"
},
"keywords": [
"highlight",
"hljs",
"vue"
],
"author": {
"name": "SunskyXH",
"email": "SunskyXH@gmail.com",
"url": "https://sunskyxh.me/"
},
"maintainers": [
{
"name": "SunskyXH",
"email": "SunskyXH@gmail.com",
"url": "https://sunskyxh.me/"
}
],
"license": "BSD-3",
"devDependencies": {
"@vitest/coverage-c8": "^0.27.0",
"highlight.js": "^11.7.0",
"typescript": "^4.9.4",
"vite": "^4.0.4",
"vitest": "^0.27.0",
"vue": "^3.2.45"
},
"peerDependencies": {
"highlight.js": "^10.0.0",
"vue": "^3.0.0"
},
"bugs": {
"url": "https://github.com/sunskyxh/vue-hljs/issues"
},
"homepage": "https://github.com/sunskyxh/vue-hljs#readme"
}