-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
29 lines (29 loc) · 823 Bytes
/
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
{
"name": "svelte-smooth-corners",
"version": "1.0.2",
"description": "Svelte component to create a wrapping element with smooth corners rather then relying on radial corners – best practices in design.",
"keywords": [],
"author": "Gustav Neustadt",
"license": "ISC",
"devDependencies": {
"@rollup/plugin-node-resolve": "^13.1.3",
"rollup": "^2.67.2",
"rollup-plugin-svelte": "^7.1.0",
"svelte": "^3.46.4"
},
"repository": {
"type": "git",
"url": "https://github.com/gustavneustadt/svelte-smooth-corners"
},
"homepage": "",
"bugs": {
"url": "https://github.com/gustavneustadt/svelte-smooth-corners/issues"
},
"main": "dist/index.js",
"module": "dist/index.mjs",
"svelte": "src/index.js",
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w"
}
}