-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.39 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
{
"name": "highlightjs-treeview",
"version": "0.1.0-alpha.3",
"type": "commonjs",
"author": {
"name": "Lasse Knudsen",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/lask79/highlightjs-treeview"
},
"bugs": {
"url": "https://github.com/lask79/highlightjs-treeview/issues"
},
"license": "MIT",
"main": "dist/lib/generator.js",
"exports": {
"./generator": "./dist/lib/generator.js",
"./treeview-default": "./dist/js/treeview-default.js",
"./treeview-default-css": "./dist/css/treeview-default.css",
"./treeview-minimal": "./dist/js/treeview-minimal.js",
"./treeview-minimal-css": "./dist/css/treeview-minimal.css",
"./package.json": "./package.json"
},
"files": [
"dist"
],
"engines": {
"node": ">=16.0.0"
},
"scripts": {
"build": "npx rollup -c"
},
"devDependencies": {
"rollup": "^3.29.4",
"rollup-plugin-copy": "^3.5.0",
"rollup-plugin-delete": "^2.0.0",
"@rollup/plugin-eslint": "^9.0.5",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-commonjs": "^25.0.7",
"handlebars": "^4.7.8",
"eslint": "~7.32",
"eslint-config-standard": "~16.0",
"stylelint": "^14.12.1",
"stylelint-config-standard": "^28.0.0"
},
"dependencies": {
"material-icon-theme": "~4.32.0"
},
"peerDependencies": {
"highlight.js": ">= 9.18"}
}