UNPKG

texturepacker-cli

Version:

NodeJS command-line interface for TexturePacker

58 lines (57 loc) 1.47 kB
{ "name": "texturepacker-cli", "version": "0.0.27", "description": "NodeJS command-line interface for TexturePacker", "keywords": [ "texturepacker", "cli" ], "license": "MIT", "author": "Róbert Darida", "homepage": "https://rdarida.github.io/texturepacker-cli/", "repository": { "type": "git", "url": "git+https://github.com/rdarida/texturepacker-cli.git" }, "bugs": { "url": "https://github.com/rdarida/texturepacker-cli/issues" }, "main": "./dist/index.js", "types": "./dist/index.d.ts", "bin": { "texturepacker-cli": "./dist/cli.js", "texture": "./dist/cli.js" }, "files": [ "./dist" ], "scripts": { "lint": "tsc", "prettier": "prettier . --check", "pretest": "rimraf ./coverage", "test": "jest", "prebuild": "rimraf ./dist", "build": "tsup ./src/index.ts ./src/cli.ts --format cjs --dts --minify", "prepublishOnly": "npm run build", "release": "standard-version", "postrelease": "git push --follow-tags origin HEAD", "predocs": "rimraf ./docs", "docs": "typedoc" }, "dependencies": { "yargs": "^18.0.0" }, "devDependencies": { "@types/jest": "^29.5.14", "@types/yargs": "^17.0.33", "jest": "^29.7.0", "jest-config": "^30.0.0", "prettier": "^3.4.2", "rimraf": "^6.0.1", "standard-version": "^9.5.0", "ts-jest": "^29.2.5", "tsup": "^8.3.5", "typedoc": "^0.28.1", "typescript": "^5.7.2" } }