-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
77 lines (77 loc) · 1.99 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
{
"name": "svelte_sidebar",
"version": "0.1.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": "./dist/index.mjs",
"default": "./dist/index.js",
".": {
"svelte": "./dist/index.mjs"
}
},
"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",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable",
"start:dev:playground": "serve"
},
"lint-staged": {
"*.{js,css,json,svelte}": [
"prettier --write"
]
},
"devDependencies": {
"@rollup/plugin-commonjs": "^24.0.1",
"@rollup/plugin-node-resolve": "^13.2.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"pinst": "^3.0.0",
"prettier": "^2.6.0",
"prettier-plugin-packagejson": "^2.2.15",
"prettier-plugin-svelte": "^2.7.0",
"rollup": "^2.70.1",
"rollup-plugin-css-only": "^4.3.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": "^5.6.0",
"serve": "^14.2.0",
"svelte": "^3.49.0"
},
"engines": {
"node": ">=16.0.0"
},
"svelte": "./dist/index.mjs"
}