-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
40 lines (40 loc) · 941 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
{
"name": "svelte-checkbox",
"version": "1.0.0",
"description": "A <Checkbox> component for Svelte",
"svelte": "Checkbox.svelte",
"module": "index.mjs",
"main": "index.js",
"scripts": {
"demo": "cd playground && yarn dev"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^6.0.0",
"rollup": "^1.20.0",
"rollup-plugin-svelte": "^5.0.3",
"svelte": "^3.0.0"
},
"keywords": [
"svelte",
"checkbox",
"input",
"svelte-checkbox",
"animate"
],
"files": [
"index.mjs",
"index.js",
"Checkbox.svelte",
"utils.js"
],
"author": "Hossein Shabani <hosseinshabani.work@gmail.com>",
"license": "MIT",
"homepage": "https://github.com/HosseinShabani/svelte-checkbox",
"repository": {
"type": "git",
"url": "https://github.com/HosseinShabani/svelte-checkbox.git"
},
"bugs": {
"url": "https://github.com/HosseinShabani/svelte-checkbox/issues"
}
}