smee-client
Version:
Client to proxy webhooks to localhost
50 lines (49 loc) • 1.24 kB
JSON
{
"name": "smee-client",
"version": "5.0.0",
"description": "Client to proxy webhooks to localhost",
"main": "index.js",
"type": "module",
"bin": {
"smee": "bin/smee.js"
},
"files": [
"index.js",
"index.d.ts",
"bin"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"lint": "prettier --check \"index.ts\" \"test/**/*.ts\" bin/smee.js package.json tsconfig.json --end-of-line auto",
"lint:fix": "prettier --write \"index.ts\" \"test/**/*.ts\" bin/smee.js package.json tsconfig.json --end-of-line auto",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:dev": "vitest --ui --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/probot/smee-client.git"
},
"author": "",
"license": "ISC",
"dependencies": {
"eventsource": "^4.0.0",
"undici": "^7.0.0"
},
"devDependencies": {
"@octokit/tsconfig": "^4.0.0",
"@types/node": "^24.0.0",
"@vitest/coverage-v8": "^4.0.0",
"get-port": "^7.1.0",
"prettier": "^3.1.0",
"typescript": "^5.0.0",
"vitest": "^4.0.0"
},
"engines": {
"node": "^20.18 || >= 22"
},
"publishConfig": {
"access": "public",
"provenance": true
}
}