forked from philipp-tailor/svelte_sidebar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 1.95 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
{
"name": "svelte_sidebar",
"version": "0.0.1",
"keywords": [
"svelte",
"sidebar",
"sidebar-component",
"sidebar-navigation",
"collapsible-tree",
"navigation-links",
"navigation-hierarchy",
"navigation-routes"
],
"homepage": "http://sidebar.schneiders.space",
"bugs": {
"url": "https://github.com/philipp-tailor/svelte_sidebar/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/philipp-tailor/svelte_sidebar.git"
},
"license": "MIT",
"contributors": [
"Philipp Tailor (http://schneiders.space)"
],
"exports": {
"import": "./index.js",
"default": "./index.js"
},
"main": "dist/index.js",
"module": "dist/index.mjs",
"files": [
"dist",
"src/components/Sidebar"
],
"scripts": {
"autobuild:playground": "rollup -c rollup.config.playground.js -w",
"build:package": "rollup -c rollup.config.package.js",
"build:playground": "rollup -c rollup.config.playground.js",
"clean:playground": "find ./public -type f -name \"*.js\" -o -name \"*.map\" -o -name \"*.css\" | xargs rm",
"dev:playground": "yarn clean:playground && yarn start:dev:playground & yarn autobuild:playground",
"postinstall": "husky install",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable",
"start:dev:playground": "serve"
},
"lint-staged": {
"*.{js,css,json,svelte}": [
"prettier --write",
"git add"
]
},
"devDependencies": {
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.0.6",
"husky": ">=5",
"lint-staged": ">=11",
"pinst": "^2.1.6",
"prettier": "^2.4.1",
"prettier-plugin-packagejson": "^2.2.15",
"prettier-plugin-svelte": "^2.5.0",
"rollup": "^2.60.0",
"rollup-plugin-css-only": "^3.1.0",
"rollup-plugin-livereload": "^2.0.5",
"rollup-plugin-md": "^1.0.1",
"rollup-plugin-svelte": "^7.1.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-visualizer": "^4.2.0",
"serve": "^13.0.2",
"svelte": "^3.44.2"
},
"svelte": "src/components/Sidebar/index.js"
}