mirror of
https://github.com/monkeytypegame/monkeytype.git
synced 2025-12-29 11:26:13 +08:00
26 lines
710 B
JSON
26 lines
710 B
JSON
{
|
|
"name": "@monkeytype/release",
|
|
"private": true,
|
|
"bin": {
|
|
"monkeytype-release": "./src/index.js"
|
|
},
|
|
"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",
|
|
"lint": "oxlint . --type-aware --type-check",
|
|
"lint-fast": "oxlint .",
|
|
"purge-cf-cache": "./bin/purgeCfCache.sh"
|
|
},
|
|
"dependencies": {
|
|
"@octokit/rest": "21.1.1",
|
|
"dotenv": "16.4.5",
|
|
"readline-sync": "1.4.10"
|
|
},
|
|
"devDependencies": {
|
|
"nodemon": "3.1.4",
|
|
"oxlint": "1.34.0",
|
|
"oxlint-tsgolint": "0.9.2"
|
|
}
|
|
}
|