-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.41 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
{
"name": "feather-helper",
"version": "2.1.1",
"description": "Helper for feather-icons",
"keywords": [
"feather-helper",
"feather-icons",
"helper",
"svg",
"design",
"svelte",
"vue",
"react"
],
"homepage": "https://github.com/shiftgeist/feather-helper#readme",
"repository": {
"type": "git",
"url": "https://github.com/shiftgeist/feather-helper.git"
},
"license": " Apache-2.0",
"author": "Felix Hungenberg",
"sideEffects": false,
"type": "module",
"exports": {
".": {
"browser": "./dist/feather-helper.js",
"import": "./dist/feather-helper.js",
"require": "./dist/feather-helper.cjs.js",
"umd": "./dist/feather-helper.umd.js"
},
"./": "./",
"./package.json": "./package.json"
},
"main": "dist/feather-helper.cjs.js",
"unpkg": "dist/feather-helper.js",
"module": "dist/feather-helper.js",
"source": "lib/feather-helper.ts",
"browser": "dist/feather-helper.umd.js",
"types": "dist/feather-helper.d.ts",
"files": [
"LICENSE",
"dist"
],
"scripts": {
"start": "klap start --example public/index.ts",
"build": "klap build",
"prepublishOnly": "npm run build",
"watch": "klap watch"
},
"devDependencies": {
"@types/feather-icons": "^4.7.0",
"feather-icons": "^4.28.0",
"klap": "^6.1.3",
"typescript": "^4.2.3"
},
"peerDependencies": {
"feather-icons": "^4.28.0"
}
}