mirror of
https://github.com/monkeytypegame/monkeytype.git
synced 2025-09-08 23:56:27 +08:00
27 lines
727 B
JSON
27 lines
727 B
JSON
{
|
|
"name": "@monkeytype/release",
|
|
"private": true,
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "nodemon --watch src --exec \"node ./src/index.js --dry\"",
|
|
"dev-hotfix": "nodemon --watch src --exec \"node ./src/index.js --dry --hotfix\"",
|
|
"dev-changelog": "nodemon ./src/buildChangelog.js",
|
|
"oxlint": "oxlint .",
|
|
"lint": "npm run oxlint",
|
|
"purge-cf-cache": "./bin/purgeCfCache.sh"
|
|
},
|
|
"devDependencies": {
|
|
"@monkeytype/eslint-config": "workspace:*",
|
|
"eslint": "8.57.1",
|
|
"nodemon": "3.1.4",
|
|
"oxlint": "1.12.0"
|
|
},
|
|
"bin": {
|
|
"monkeytype-release": "./src/index.js"
|
|
},
|
|
"dependencies": {
|
|
"@octokit/rest": "21.1.1",
|
|
"dotenv": "16.4.5",
|
|
"readline-sync": "1.4.10"
|
|
}
|
|
}
|