{
  "name": "vrem",
  "version": "0.0.3",
  "description": "An open-source automatic time-tracker",
  "author": "RussCoder",
  "license": "The Unlicense",
  "repository": {
    "type": "git",
    "url": "https://github.com/RussCoder/vrem.git"
  },
  "keywords": [
    "time",
    "automatic",
    "time-tracker"
  ],
  "os": [
    "win32"
  ],
  "engines": {
    "node": ">=12"
  },
  "bin": {
    "vrem": "dist/index.js"
  },
  "files": [
    "/dist*/",
    "/binding.gyp",
    "/sql/",
    "/native_code"
  ],
  "eslintConfig": {
    "root": true,
    "ignorePatterns": [
      "**/*"
    ]
  },
  "scripts": {
    "preuninstall": "node dist/index.js off && node dist/index.js server off",
    "postinstall": "node dist/scripts/postinstall.js",
    "clean": "git clean -fdX --exclude=!/.*/",
    "install": "npm run compile || tsc && npm run compile",
    "compile": "node dist/scripts/compile.js",
    "i": "npm install --ignore-scripts",
    "vrem": "ts-node src/index",
    "tracker": "ts-node src/tracker/tracker --dev",
    "server": "nodemon src/server/server.ts --watch src",
    "tsc": "tsc",
    "build:ui": "cd ui && npm run build && cd ..",
    "build": "tsc && cd ui && npm i && npm run build && cd .. && npm run install"
  },
  "dependencies": {
    "better-sqlite3": "^7.4.3",
    "commander": "^8.2.0",
    "express": "^4.17.1",
    "fs-extra": "^10.0.0",
    "node-addon-api": "*",
    "ws": "^8.2.2"
  },
  "devDependencies": {
    "@tsconfig/node12": "^1.0.9",
    "@types/better-sqlite3": "^7.4.0",
    "@types/fs-extra": "^9.0.12",
    "@types/node": "^14.14.41",
    "@types/ws": "^7.4.7",
    "typescript": "^4.4.3"
  }
}
