-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.41 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.41 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "@man8/assetmill",
"version": "0.3.1",
"description": "A powerful command-line tool for automated image asset processing and optimization. Generate multiple sizes, formats, and variants from source images.",
"main": "dist/index.js",
"bin": {
"assetmill": "dist/cli/index.js"
},
"scripts": {
"clean": "npx rimraf dist",
"clean:all": "npx rimraf dist node_modules",
"build": "tsc",
"dev": "tsc --watch",
"test": "jest",
"test:watch": "jest --watch",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"format": "prettier --write src/**/*.ts",
"ci": "npm run build && npm test && npm run lint",
"prepare": "npm run build",
"prepublishOnly": "npm run build && npm test && npm run lint",
"release:patch": "commit-and-tag-version --release-as patch",
"release:minor": "commit-and-tag-version --release-as minor",
"release:major": "commit-and-tag-version --release-as major",
"release:first": "commit-and-tag-version --first-release"
},
"keywords": [
"asset",
"brand",
"branding",
"image",
"logo",
"processing",
"pipeline",
"optimization",
"resize",
"favicon",
"social",
"responsive"
],
"author": "Louis Mandelstam <louis@man8.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/man8/assetmill.git"
},
"bugs": {
"url": "https://github.com/man8/assetmill/issues"
},
"homepage": "https://github.com/man8/assetmill#readme",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"engines": {
"node": "^20.17.0 || >=22.0.0"
},
"dependencies": {
"@types/svgo": "^2.6.4",
"ajv": "^8.18.0",
"chalk": "^4.1.2",
"commander": "^11.1.0",
"fs-extra": "^11.3.4",
"glob": "^12.0.0",
"js-yaml": "^4.1.1",
"ora": "^8.0.1",
"sharp": "^0.34.5",
"svgo": "^3.3.3"
},
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/jest": "^29.5.8",
"@types/js-yaml": "^4.0.9",
"@types/node": "^22.17.0",
"@typescript-eslint/eslint-plugin": "^8.33.0",
"@typescript-eslint/parser": "^8.33.0",
"commit-and-tag-version": "^12.5.1",
"eslint": "^9.28.0",
"globals": "^16.2.0",
"jest": "^29.7.0",
"prettier": "^3.1.0",
"ts-jest": "^29.1.1",
"typescript": "^5.3.0"
},
"files": [
"dist/**/*",
"README.md",
"LICENSE"
]
}