2025-02-15 23:59:33 +09:00
|
|
|
{
|
2025-02-17 22:49:54 +09:00
|
|
|
"type": "commonjs",
|
|
|
|
"name": "@riq0h/mtt",
|
2025-02-17 23:24:21 +09:00
|
|
|
"version": "0.0.10",
|
2025-02-17 22:49:54 +09:00
|
|
|
"description": "mtt - multitool for file operation",
|
|
|
|
"main": "dist/lib.js",
|
|
|
|
"types": "dist/lib.d.ts",
|
2025-02-15 23:59:33 +09:00
|
|
|
"bin": {
|
2025-02-17 22:49:54 +09:00
|
|
|
"mtt": "./dist/index.js"
|
|
|
|
},
|
|
|
|
"exports": {
|
|
|
|
".": {
|
|
|
|
"types": "./dist/lib.d.ts",
|
|
|
|
"require": "./dist/lib.js",
|
|
|
|
"default": "./dist/lib.js"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"files": [
|
|
|
|
"dist"
|
|
|
|
],
|
|
|
|
"publishConfig": {
|
|
|
|
"access": "public"
|
2025-02-15 23:59:33 +09:00
|
|
|
},
|
|
|
|
"scripts": {
|
|
|
|
"build": "tsc",
|
2025-02-17 22:49:54 +09:00
|
|
|
"start": "node ./dist/index.js",
|
|
|
|
"fix": "prettier --write . && eslint --fix .",
|
|
|
|
"lint": "prettier --check . && eslint src/**/*.ts ."
|
2025-02-15 23:59:33 +09:00
|
|
|
},
|
2025-02-17 22:49:54 +09:00
|
|
|
"keywords": [
|
|
|
|
"cli",
|
|
|
|
"rename",
|
|
|
|
"compress",
|
|
|
|
"image",
|
|
|
|
"resize"
|
|
|
|
],
|
|
|
|
"author": "Rikuoh Tsujitani",
|
2025-02-15 23:59:33 +09:00
|
|
|
"license": "MIT",
|
2025-02-17 22:49:54 +09:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "https://github.com/riq0h/mtt"
|
|
|
|
},
|
2025-02-15 23:59:33 +09:00
|
|
|
"devDependencies": {
|
2025-02-17 22:49:54 +09:00
|
|
|
"@eslint/js": "^9.20.0",
|
2025-02-15 23:59:33 +09:00
|
|
|
"@types/node": "^22.13.4",
|
2025-02-17 22:49:54 +09:00
|
|
|
"@types/sharp": "^0.31.1",
|
|
|
|
"@typescript-eslint/parser": "^8.24.0",
|
|
|
|
"eslint-config-prettier": "^10.0.1",
|
2025-02-15 23:59:33 +09:00
|
|
|
"typescript": "^5.7.3"
|
|
|
|
},
|
|
|
|
"dependencies": {
|
2025-02-17 22:49:54 +09:00
|
|
|
"commander": "^13.1.0",
|
|
|
|
"eslint": "^9.20.1",
|
|
|
|
"globals": "^15.15.0",
|
|
|
|
"prettier": "^3.5.1",
|
|
|
|
"sharp": "^0.33.5",
|
|
|
|
"zip-lib": "^1.0.5"
|
2025-02-15 23:59:33 +09:00
|
|
|
}
|
|
|
|
}
|