-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.34 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
{
"name": "svelte-dialog",
"version": "0.2.0",
"description": "Vanilla JS dialog services and components made with Svelte.",
"main": "build/index.cjs.js",
"module": "build/index.js",
"svelte": "src/index.js",
"svelte.root": "src",
"scripts": {
"build-main": "rollup -c",
"build-docs": "(cd docs && npm run build)",
"build": "npm run build-main && npm run build-docs",
"clean": "rm -r build docs/build",
"watch": "onchange -i 'src/**/*' 'docs/src/**/*' -- npm run build",
"server": "live-server --watch=./docs/build,./docs/index.html --no-browser docs",
"dev": "sh -c 'npm run watch & npm run server & wait'",
"prepublish": "npm run clean && npm run build"
},
"keywords": [
"svelte",
"dialog",
"modal",
"popup",
"alert",
"confirm",
"prompt",
"warn",
"nofity",
"window",
"overlay",
"content",
"browser"
],
"repository": {
"type": "git",
"url": "https://github.com/m59peacemaker/svelte-dialog"
},
"author": "Johnny Hauser <johnnyhauser@gmail.com>",
"license": "CC0-1.0",
"dependencies": {
"svelte-modal": "^0.3.0"
},
"devDependencies": {
"live-server": "^1.2.0",
"onchange": "^3.2.1",
"rollup": "^0.49.2",
"rollup-plugin-commonjs": "^8.1.0",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-svelte": "^3.1.0"
}
}