-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.49 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.49 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "optimize-icons-cli",
"version": "1.5.1",
"description": "CLI tool for optimizing icons",
"main": "dist/cli.js",
"types": "dist/types/index.d.ts",
"bin": {
"optimize-icons": "./bin/cli.js"
},
"repository": {
"type": "git",
"url": "https://github.com/zenkiet/optimize-icons-cli"
},
"scripts": {
"build": "npx tsc",
"start": "node dist/cli.js",
"format": "prettier --write './**/*.{ts,js,json}'",
"prepare": "husky",
"lint-staged": "lint-staged"
},
"files": [
"dist",
"LICENSE",
"README.md"
],
"keywords": [
"cli",
"optimize",
"icons"
],
"author": "Kiet Le",
"license": "MIT",
"dependencies": {
"boxen": "^5.1.2",
"cli-progress": "^3.12.0",
"commander": "^12.1.0",
"fast-glob": "^3.3.2",
"figlet": "^1.8.0",
"fs-extra": "^11.2.0",
"inquirer": "^12.2.0",
"ora": "^5.4.1",
"prettier": "^3.4.2"
},
"devDependencies": {
"@commitlint/cli": "^19.6.0",
"@commitlint/config-conventional": "^19.6.0",
"@types/cli-progress": "^3.11.6",
"@types/figlet": "^1.7.0",
"@types/fs-extra": "^11.0.4",
"@types/inquirer": "^9.0.7",
"@types/node": "^22.10.1",
"gitmoji-cli": "^9.5.0",
"husky": "^9.1.7",
"lint-staged": "^15.2.10",
"prettier-plugin-organize-imports": "^4.1.0",
"typescript": "~5.4.0"
},
"engines": {
"node": ">=22"
},
"volta": {
"node": "22.11.0"
},
"lint-staged": {
"*.{ts,json}": "prettier --cache --write"
}
}