-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.17 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.17 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
46
47
48
49
50
51
{
"name": "svg-spritify",
"version": "2.1.0",
"main": "dist/index.js",
"bin": {
"sprite": "dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "pkgroll --minify --clean-dist",
"dev": "tsx src/index.ts",
"dev:watch": "tsx --watch src/index.ts",
"prepublishOnly": "npm run build"
},
"license": "MIT",
"author": "Sina Bayandorian <sina.sina.bayan@protonmail.com> (https://portfolio-sina-byn.vercel.app/)",
"description": "SVG sprite generator CLI tool",
"repository": {
"type": "git",
"url": "git+https://github.com/sina-byn/svg-spritify.git"
},
"homepage": "https://github.com/sina-byn/svg-spritify#readme",
"dependencies": {
"commander": "^14.0.0",
"svg-mixer": "^2.3.14"
},
"bugs": {
"url": "https://github.com/sina-byn/svg-spritify/issues",
"email": "sina.sina.bayan@protonmail.com"
},
"devDependencies": {
"@types/node": "^24.1.0",
"pkgroll": "^2.14.5",
"tsx": "^4.20.3",
"typescript": "^5.8.3"
},
"keywords": [
"svg",
"css",
"icons",
"sprites",
"svg-icon",
"svg-icons",
"css-sprites",
"svg-sprites",
"icon-generator",
"sprite-generator"
]
}