easy-tinypng-new-cli
Version:
A cli can be used to compress images with tinypng.com
91 lines • 2.21 kB
JSON
{
"name": "easy-tinypng-new-cli",
"type": "module",
"version": "0.7.4",
"description": "A cli can be used to compress images with tinypng.com",
"author": "sudongyuer",
"license": "MIT",
"funding": "https://github.com/sponsors/sudongyuer",
"homepage": "https://gitee.com/jqClub/easy-tinypng-new-cli#readme",
"repository": "https://gitee.com/jqClub/easy-tinypng-new-cli",
"bugs": "https://gitee.com/jqClub/easy-tinypng-new-cli/issues",
"keywords": [
"tinypng",
"image",
"compress",
"cli",
"tiny-cli"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"import": "./dist/index.js"
},
"./utils": {
"types": "./dist/utils.d.ts",
"require": "./dist/utils.js",
"import": "./dist/utils.js"
}
},
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"typesVersions": {
"*": {
"*": [
"./dist/*",
"./dist/index.d.ts"
]
}
},
"bin": {
"tiny": "bin/optimize.js"
},
"files": [
"dist"
],
"scripts": {
"dev": "unbuild --stub --declaration",
"build": "rimraf ./dist && tsc",
"test": "vitest",
"tsc": "rimraf ./dist && tsc --watch",
"version": "changeset version",
"changeset": "changeset add",
"release": "pnpm run build && pnpm run release:only",
"release:only": "changeset publish",
"typecheck": "tsc --noEmit",
"lint": "eslint . --cache",
"lint-fix": "eslint . --fix",
"try": "tsx src/index.ts"
},
"dependencies": {
"chalk": "4.1.2",
"chokidar": "^3.5.3",
"commander": "^9.4.0",
"fast-glob": "^3.2.11",
"figlet": "^1.5.2",
"fs-extra": "^10.1.0",
"ora": "^6.1.2",
"tinify": "^1.6.1",
"unconfig": "^0.3.5"
},
"devDependencies": {
"@sudongyuer/eslint-config": "^0.1.3",
"@types/figlet": "^1.5.4",
"@types/fs-extra": "^9.0.13",
"@types/node": "^18.0.0",
"eslint": "^8.18.0",
"rimraf": "^3.0.2",
"tsx": "^3.6.0",
"typescript": "^4.7.4",
"unbuild": "^0.7.4",
"vite": "^2.9.12",
"vitest": "^0.15.2"
},
"eslintConfig": {
"extends": [
"@sudongyuer"
]
}
}