-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
38 lines (38 loc) · 956 Bytes
/
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
{
"name": "@highlightjs/vue-plugin",
"version": "2.1.1",
"description": "Highlight.js Vue Plugin",
"main": "dist/highlightjs-vue.min.js",
"module": "dist/highlightjs-vue.esm.min.js",
"types": "dist/vue.d.ts",
"scripts": {
"build": "rollup -c",
"test": "echo \"Error: no test specified\" && exit 1",
"publish": "npm publish --access public --tag next"
},
"exports": {
".": {
"require": "./dist/highlightjs-vue.min.js",
"import": "./dist/highlightjs-vue.esm.min.js",
"types": "./dist/vue.d.ts"
}
},
"type": "module",
"author": "Josh Goebel <[email protected]>",
"license": "BSD-3-Clause",
"devDependencies": {
"rollup": "^2.42.3",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.30.0",
"tslib": "^2.2.0",
"typescript": "^4.2.4"
},
"peerDependencies": {
"highlight.js": "^11.0.1",
"vue": "^3"
},
"files": [
"dist",
"src"
]
}