-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
48 lines (48 loc) · 1.07 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
{
"name": "svelte-unicons",
"description": "Unicon icons for Svelte based on IconScout/unicons",
"version": "1.0.1",
"author": "http://github.com/devShamim",
"repository": {
"url": "devShamim/svelte-unicons",
"type": "git"
},
"svelte": "src/index.js",
"module": "index.mjs",
"main": "index.js",
"files": [
"src",
"index.mjs",
"index.js",
"index.d.ts"
],
"types": "index.d.ts",
"license": "MIT",
"scripts": {
"build:icons": "node build",
"build:dist": "rollup -c",
"build": "npm run build:icons && npm run build:dist",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@iconscout/unicons": "^3.0.5",
"@rollup/plugin-node-resolve": "^13.0.0",
"cheerio": "^1.0.0-rc.12",
"fs-extra": "^10.0.0",
"pascal-case": "^3.1.2",
"path": "^0.12.7",
"rollup": "latest",
"rollup-plugin-svelte": "latest",
"rollup-plugin-terser": "^7.0.2"
},
"keywords": [
"svelte",
"unicons",
"unicon",
"iconscout",
"svelte unicon"
],
"dependencies": {
"svelte": "^3.38.2"
}
}