Skip to content

Commit

Permalink
made the node package executable through npx
Browse files Browse the repository at this point in the history
  • Loading branch information
aadityabhatia committed Jul 27, 2023
1 parent d5ce988 commit 64496c8
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 62 deletions.
64 changes: 7 additions & 57 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

24 changes: 19 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,22 +1,36 @@
{
"name": "@corsaircoalition/replay-ranger",
"version": "2.0.0",
"version": "2.0.1",
"description": "record and replay generals.io game updates to Redis",
"main": "out/index.js",
"type": "module",
"dependencies": {
"@corsaircoalition/common": "^1.1.0",
"commander": "^10.0.0",
"redis": "^4.6.5"
"commander": "^10.0.0"
},
"devDependencies": {
"@sindresorhus/tsconfig": "^3.0.1",
"@types/node": "^18.15.5",
"typescript": "^5.0.2"
},
"bin": "./out/index.js",
"files": [
"out"
],
"scripts": {
"build": "tsc --build",
"clean": "tsc --build --clean",
"start": "node app.js"
}
"prepare": "npm run build",
"start": "node ."
},
"repository": {
"type": "git",
"url": "github:CorsairCoalition/CommanderCortex"
},
"publishConfig": {
"access": "public"
},
"author": "Aaditya Bhatia",
"license": "Apache-2.0",
"homepage": "https://corsaircoalition.github.io/"
}

0 comments on commit 64496c8

Please sign in to comment.