-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
made the node package executable through
npx
- Loading branch information
1 parent
d5ce988
commit 64496c8
Showing
2 changed files
with
26 additions
and
62 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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/" | ||
} |