forked from nickyhajal/svelte-tabs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "@master.technology/svelte-tabs",
"version": "2.0.0",
"svelte": "src/index.js",
"module": "dist/index.mjs",
"main": "dist/index.js",
"private": false,
"access": "public",
"exports": {
".": {
"svelte": "./src/index.js"
}
},
"scripts": {
"build": "rollup -c",
"build:watch": "rollup -cw",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"rollup": "^4.18.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-svelte": "^7.2.0",
"svelte": "^4.2.17",
"rollup-plugin-import-css": "^3.5.0"
},
"keywords": [
"svelte",
"tabs"
],
"license": "MIT",
"contributors": [
"Rich Harris",
"Joe Attardi <jattardi@gmail.com> (https://joeattardi.codes)",
"Nathanael Anderson <nathan@master.technology> (https://master.technology)"
],
"repository": {
"type": "git",
"url": "https://github.com/master-technology/svelte-tabs.git"
},
"bugs": {
"url": "https://github.com/master-technology/svelte-tabs/issues"
},
"files": [
"dist",
"src/id.js",
"src/index.js",
"src/Tab.svelte",
"src/TabList.svelte",
"src/TabPanel.svelte",
"src/Tabs.svelte"
]
}