forked from metonym/svelte-radio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1014 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
30
31
32
33
34
35
36
37
38
39
40
41
42
{
"name": "svelte-radio",
"version": "1.0.1",
"license": "MIT",
"description": "Declarative Radio button group component for Svelte",
"author": "Eric Liu (https://github.com/metonym)",
"svelte": "./src/index.js",
"main": "./lib/index.js",
"module": "./lib/index.mjs",
"types": "./types/index.d.ts",
"sideEffects": false,
"scripts": {
"dev": "rollup -cw",
"predeploy": "rollup -c",
"deploy": "npx gh-pages -d dist",
"prepack": "BUNDLE=true rollup -c",
"test": "svelte-check"
},
"devDependencies": {
"svelte": "^3.44.3",
"svelte-check": "^2.2.11",
"svelte-readme": "^3.6.2"
},
"repository": {
"type": "git",
"url": "https://github.com/metonym/svelte-radio.git"
},
"homepage": "https://github.com/metonym/svelte-radio",
"bugs": "https://github.com/metonym/svelte-radio/issues",
"keywords": [
"svelte",
"svelte component",
"radio",
"radio button",
"radio group"
],
"files": [
"lib",
"src",
"types"
]
}