{
    "name": "create-stash-plugin",
    "version": "1.0.1",
    "description": "Generates boilerplate code for stash-plugin-builder",
    "funding": "https://github.com/sponsors/Tetrax-10",
    "author": "Tetrax-10",
    "license": "MIT",
    "repository": {
        "type": "git",
        "url": "git+https://github.com/Tetrax-10/stash-plugin-builder.git"
    },
    "keywords": [
        "stash",
        "stashapp",
        "stash-plugin",
        "stash-plugin-creator",
        "plugin-creator",
        "creator"
    ],
    "scripts": {
        "build": "esbuild src/index.ts --bundle --platform=node --format=esm --external:../../node_modules/* --outdir=dist --minify",
        "watch": "npm run build -- --watch"
    },
    "type": "module",
    "bin": {
        "create-stash-plugin": "dist/index.js"
    },
    "files": [
        "dist/**/*",
        "template/**/*"
    ],
    "dependencies": {
        "chalk": "^5.3.0",
        "cross-spawn": "^7.0.3",
        "inquirer": "^8.2.6",
        "yaml": "^2.3.4"
    },
    "devDependencies": {
        "@types/cross-spawn": "^6.0.6",
        "@types/inquirer": "^8.2.10",
        "@types/node": "^20.11.14",
        "esbuild": "^0.20.0"
    }
}
