-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
64 lines (64 loc) · 1.52 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
57
58
59
60
61
62
63
64
{
"name": "@colorfuldots/svelteit",
"version": "1.0.0-alpha.7",
"description": "Svelteit is a minimalistic UI/UX component framework for Svelte and Sapper projects",
"keywords": [
"ui",
"ux",
"components",
"svelte",
"framework",
"css",
"sapper",
"svelteit",
"javascript"
],
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/erictherobot/svelteit.git"
},
"license": "MIT",
"author": "Eric David Smith <eric@colorfuldots.com> (https://ericdavidsmith.com)",
"main": "dist/index.js",
"module": "dist/index.mjs",
"browser": {
"fs": false
},
"scripts": {
"build": "rollup -c",
"build:watch": "rollup -cw",
"prepublishOnly": "npm run build",
"test": "jest",
"test:watch": "jest --watch"
},
"dependencies": {
"svelte-css-vars": "0.0.1"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@rollup/plugin-commonjs": "^11.0.0",
"@rollup/plugin-node-resolve": "^7.0.0",
"@size-limit/preset-app": "^4.4.5",
"node-sass": "^4.13.1",
"npm-run-all": "^4.1.5",
"rollup": "^2.3.2",
"rollup-plugin-css-porter": "^1.0.2",
"rollup-plugin-svelte": "^5.2.0",
"size-limit": "^4.4.5",
"svelte": "^3.20.1",
"svelte-preprocess": "^3.7.1"
},
"size-limit": [
{
"path": "dist/index.js",
"ignore": [
"fs"
]
}
],
"svelte": "src/index.js",
"bugs": {
"url": "https://github.com/erictherobot/svelteit/issues"
},
"homepage": "https://github.com/erictherobot/svelteit#readme"
}