-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
55 lines (55 loc) · 1.32 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
{
"name": "svelte-feather-icons",
"description": "Feather icons for Svelte (Completely based on vue-feather-icons by EGOIST)",
"version": "4.2.0",
"author": "dylanblokhuis <[email protected]>",
"repository": {
"url": "dylanblokhuis/svelte-feather-icons",
"type": "git"
},
"svelte": "src/index.js",
"module": "index.mjs",
"main": "index.js",
"exports": {
"./src/icons/*.svelte": "./src/icons/*.svelte",
"./package.json": "./package.json",
"./src": "./src/index.js",
".": {
"types": "./index.d.ts",
"svelte": "./src/index.js",
"import": "./index.mjs",
"default": "./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": {
"@rollup/plugin-node-resolve": "^13.0.0",
"feather-icons": "4.29.0",
"fs-extra": "^10.0.0",
"pascal-case": "^3.1.2",
"path": "^0.12.7",
"rollup": "^2",
"rollup-plugin-svelte": "^7.1.5",
"rollup-plugin-terser": "^7.0.2"
},
"keywords": [
"svelte",
"feather icons"
],
"dependencies": {
"svelte": "^3.38.2"
}
}