-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.18 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
65
66
67
68
69
70
{
"name": "@marianmeres/icons-fns",
"version": "4.2.0",
"description": "Icon svgs wrapped as functions.",
"type": "module",
"files": [
"dist"
],
"types": "./dist/index.d.ts",
"exports": {
".": null,
"./bootstrap/*.js": "./dist/bootstrap/*.js",
"./heroicons/micro/*.js": "./dist/heroicons/micro/*.js",
"./heroicons/mini/*.js": "./dist/heroicons/mini/*.js",
"./heroicons/outline/*.js": "./dist/heroicons/outline/*.js",
"./heroicons/solid/*.js": "./dist/heroicons/solid/*.js",
"./bytesize/*.js": "./dist/bytesize/*.js",
"./feather/*.js": "./dist/feather/*.js",
"./boxicons/regular/*.js": "./dist/boxicons/regular/*.js",
"./boxicons/solid/*.js": "./dist/boxicons/solid/*.js",
"./font-awesome/regular/*.js": "./dist/font-awesome/regular/*.js",
"./font-awesome/solid/*.js": "./dist/font-awesome/solid/*.js",
"./phosphor/bold/*.js": "./dist/phosphor/bold/*.js",
"./phosphor/duotone/*.js": "./dist/phosphor/duotone/*.js",
"./phosphor/fill/*.js": "./dist/phosphor/fill/*.js",
"./phosphor/light/*.js": "./dist/phosphor/light/*.js",
"./phosphor/regular/*.js": "./dist/phosphor/regular/*.js",
"./phosphor/thin/*.js": "./dist/phosphor/thin/*.js"
},
"scripts": {
"clean": "rimraf dist/*",
"test": "node test",
"prettier": "prettier --write src/build.cjs",
"build": "npm run clean && node src/build.cjs build",
"release": "release -v minor",
"release:patch": "release -v patch",
"release:major": "release -v major"
},
"repository": {
"type": "git",
"url": "git+https://github.com/marianmeres/icons-fns.git"
},
"keywords": [
"icons",
"bootstrap-icons",
"heroicons"
],
"author": "Marian Meres <marian@meres.sk>",
"license": "MIT",
"bugs": {
"url": "https://github.com/marianmeres/icons-fns/issues"
},
"homepage": "https://github.com/marianmeres/icons-fns#readme",
"devDependencies": {
"@marianmeres/release": "^1.0.0",
"@phosphor-icons/core": "^2.1.1",
"@types/node": "^18.15.11",
"bootstrap-icons": "^1.11.2",
"boxicons": "^2.1.4",
"bytesize-icons": "^1.4.0",
"feather-icons": "^4.29.1",
"heroicons": "^2.1.1",
"kleur": "^4.1.5",
"minimist": "^1.2.8",
"mkdirp": "^2.1.6",
"prettier": "^2.8.7",
"rimraf": "^4.4.1",
"totalist": "^3.0.0"
}
}