| 12345678910111213141516171819202122232425262728293031323334 |
- {
- "name": "canary-log-viewer",
- "version": "1.0.0",
- "description": "Structured log viewer for canary logs.",
- "main": "index.js",
- "bin": {
- "clv": "./bin/cli.js"
- },
- "scripts": {
- "start": "ts-node canary-log-viewer.ts",
- "build": "tsc",
- "lint": "eslint . --ext .ts",
- "test": "echo \"Error: no test specified\" && exit 1"
- },
- "repository": {
- "type": "git",
- "url": "https://git.bodicsek.host/bodicsek/canary-log-viewer.git"
- },
- "author": "",
- "license": "MIT",
- "devDependencies": {
- "@types/node": "^14.14.41",
- "@types/yargs": "^16.0.1",
- "@typescript-eslint/eslint-plugin": "^4.22.0",
- "@typescript-eslint/parser": "^4.22.0",
- "eslint": "^7.25.0",
- "ts-node": "^9.1.1",
- "typescript": "^4.2.4"
- },
- "dependencies": {
- "rxjs": "^6.6.7",
- "yargs": "^16.2.0"
- }
- }
|