-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.44 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
53
54
55
56
{
"name": "simple-svelte-components",
"version": "1.1.3",
"description": "Reusable svelte components for quick application development",
"svelte": "src/index.js",
"module": "dist/index.mjs",
"main": "dist/index.js",
"scripts": {
"prepublishOnly": "npm run build",
"build": "rm -rf dist && rollup -c",
"test": "./test.sh",
"start": "start-storybook --host 0.0.0.0 --port 80 --ci",
"build-storybook": "build-storybook -c .storybook -o .out"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@rollup/plugin-commonjs": "^15.1.0",
"@rollup/plugin-node-resolve": "^9.0.0",
"@storybook/svelte": "^6.0.26",
"babel-loader": "^8.1.0",
"minimist": "^1.2.5",
"rollup": "^2.29.0",
"rollup-plugin-svelte": "^6.0.1",
"svelte": "^3.29.0",
"svelte-loader": "^2.13.6"
},
"dependencies": {
"fast-deep-equal": "^3.1.1",
"lodash-es": "^4.17.15",
"resize-observer-polyfill": "^1.5.1",
"txstate-utils": "^1.1.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wickning1/svelte-components.git"
},
"keywords": [
"svelte",
"svelte3",
"components",
"ui",
"ux",
"library"
],
"author": "Nick Wing",
"license": "MIT",
"bugs": {
"url": "https://github.com/wickning1/svelte-components/issues"
},
"homepage": "https://github.com/wickning1/svelte-components#readme",
"sideEffects": false,
"files": [
"dist",
"src"
]
}