{
  "name": "node-ovsx-sign",
  "version": "1.2.0",
  "description": "A package for signing and verifying VS Code extensions",
  "main": "lib/index",
  "types": "lib/index",
  "keywords": [],
  "license": "EPL-2.0",
  "contributors": [
    {
      "name": "Filip Troníček",
      "email": "filip@gitpod.io"
    },
    {
      "name": "Aart van Baren",
      "email": "amvanbaren@hotmail.com"
    }
  ],
  "bugs": {
    "url": "https://github.com/filiptronicek/node-ovsx-sign/issues"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/filiptronicek/node-ovsx-sign"
  },
  "files": [
    "lib",
    "src"
  ],
  "bin": {
    "node-ovsx-sign": "lib/node-ovsx-sign"
  },
  "engines": {
    "node": ">= 18"
  },
  "homepage": "https://open-vsx.org",
  "scripts": {
    "clean": "rimraf lib",
    "build": "tsc -p ./tsconfig.json && yarn run lint && cp src/node-ovsx-sign lib/node-ovsx-sign",
    "watch": "cp src/node-ovsx-sign lib/node-ovsx-sign && tsc -w -p ./tsconfig.json",
    "format": "prettier --write .",
    "lint": "eslint -c ./configs/eslintrc.json --ext .ts src",
    "prepare": "yarn run clean && yarn run build",
    "publish:next": "yarn publish --new-version \"$(semver $npm_package_version -i minor)-next.$(git rev-parse --short HEAD)\" --tag next --no-git-tag-version",
    "publish:latest": "yarn publish --tag latest",
    "test": "jest"
  },
  "dependencies": {
    "@vscode/vsce": "^2.26.1",
    "archiver": "^7.0.1",
    "commander": "^10.0.1",
    "node-fetch": "2.7.0",
    "unzipper": "^0.11.6",
    "yauzl": "^3.1.3",
    "zod": "^3.23.8"
  },
  "devDependencies": {
    "@types/archiver": "^6.0.2",
    "@types/jest": "^29.4.0",
    "@types/node": "^14.0.0",
    "@types/node-fetch": "^2.6.2",
    "@types/unzipper": "^0.10.9",
    "@types/yauzl": "^2.10.3",
    "@typescript-eslint/eslint-plugin": "^5.52.0",
    "@typescript-eslint/parser": "^5.52.0",
    "eslint": "^8.28.0",
    "jest": "^29.4.3",
    "prettier": "^3.2.5",
    "rimraf": "^4.1.2",
    "ts-jest": "^29.0.5",
    "typescript": "^4.9.5"
  }
}
