forked from qutran/svelte-fragment
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.17 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
{
"name": "svelte-fragment",
"version": "1.0.1",
"main": "dist/cjs/index.js",
"module": "dist/es/index.mjs",
"unpkg": "dist/es/index.mjs",
"license": "MIT",
"author": "Dmitry Kutran <[email protected]> (https://github.com/qutran)",
"homepage": "https://github.com/qutran/svelte-fragment",
"repository": "github:qutran/svelte-fragment",
"bugs": "https://github.com/qutran/svelte-fragment/issues",
"description": "Svelte action to render components and elements in slots without DOM containers",
"keywords": [
"svelte",
"fragment"
],
"devDependencies": {
"npm-run-all": "^4.1.5",
"rimraf": "^2.6.3",
"rollup": "^1.10.1",
"rollup-plugin-commonjs": "^9.3.4",
"rollup-plugin-livereload": "^1.0.0",
"rollup-plugin-node-resolve": "^4.2.3",
"rollup-plugin-svelte": "^5.0.3",
"rollup-plugin-terser": "^4.0.4",
"sirv-cli": "^0.4.4",
"svelte": "^3.5.1"
},
"dependencies": {},
"scripts": {
"prepare": "npm run clean && npm run build",
"clean": "rimraf dist",
"build": "rollup -c",
"autobuild": "rollup -c -w",
"start": "run-p start:dev autobuild",
"start:dev": "sirv public --single --dev"
}
}