{
  "name": "jam-pack-nodegui",
  "version": "0.20.2",
  "description": "Tool to package NodeGui applications",
  "main": "dist/main.js",
  "author": "Simon Edwards <simon@simonzone.com>",
  "license": "MIT",
  "scripts": {
    "build": "yarn run build:code",
    "build:code": "tsc",
    "clean": "shx rm -rf dist",
    "run": "node dist/main.js -c test-config.json",
    "test": "yarn run build && yarn node --experimental-vm-modules $(yarn bin jest)"
  },
  "bin": "./dist/main.js",
  "files": [
    "dist/*.js",
    "README.md",
    "LICENSE.txt",
    "resources/**/*"
  ],
  "dependencies": {
    "@yarnpkg/shell": "^4.1.3",
    "commander": "^9.4.0",
    "minimatch": "^5.1.0",
    "readdirp": "^3.6.0",
    "recursive-copy": "^2.0.14",
    "shelljs": "^0.8.5"
  },
  "devDependencies": {
    "@types/jest": "27.0.1",
    "@types/minimatch": "^5.1.0",
    "@types/node": "^18.7.13",
    "@types/shelljs": "^0.8.11",
    "jest": "27.5.1",
    "shx": "^0.3.4",
    "typescript": "^5.9.2"
  },
  "optionalDependencies": {
    "appdmg": "^0.6.6",
    "rcedit": "^3.0.1"
  },
  "packageManager": "yarn@3.2.3",
  "engines": {
    "node": ">=10"
  }
}