-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.24 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.24 KB
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
{
"name": "iconforged",
"version": "1.3.1",
"description": "Frontend icon library. Bridging the gap between traditional icons and modern workflows.",
"main": "dist/iconforge.js",
"bin": {
"iconforged": "bin/iconforge-cli.cjs"
},
"jsdelivr": "dist/iconforge.min.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"min": "terser dist/iconforge.js -o dist/iconforge.min.js --compress --mangle",
"prepare": "npm run min",
"if:init": "node bin/iconforge-cli.cjs init",
"if:build": "node bin/iconforge-cli.cjs build",
"if:watch": "node bin/iconforge-cli.cjs watch"
},
"repository": {
"type": "git",
"url": "https://github.com/DanKaufmanDev/IconForge.git"
},
"keywords": ["IconForge", "Frontend", "Icon", "library"],
"author": {
"name": "DanKaufmanDev",
"url": "https://danielkaufman.dev"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/DanKaufmanDev/IconForge/issues"
},
"homepage": "https://github.com/DanKaufmanDev/IconForge#readme",
"files": [
"dist",
"bin"
],
"dependencies": {
"chokidar": "^3.6.0",
"fs-extra": "^10.1.0",
"glob": "^7.2.3",
"subset-font": "^2.4.0"
},
"devDependencies": {
"terser": "^5.43.1"
}
}