{
  "name": "@pycheck/ui",
  "version": "0.1.1",
  "description": "Graphical user interface for Pycheck",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/emencia/pycheck.git"
  },
  "keywords": [
    "python",
    "type_check"
  ],
  "scripts": {
    "build": "tsc -p . && cp -R ./src/ui ./bin",
    "serve": "ts-node-esm lib/server.ts",
    "start": "nodemon --watch 'src/**/*.ts' --exec 'ts-node' lib/index.ts"
  },
  "dependencies": {
    "@koa/cors": "^4.0.0",
    "@pycheck/cli": "^0.7.2",
    "chalk": "^4.1.2",
    "koa": "^2.14.1",
    "koa-router": "^12.0.0",
    "koa-static": "^5.0.0",
    "python-shell": "^5.0.0",
    "sqlite3": "^5.1.6",
    "ts-node-esm": "^0.0.6",
    "ws": "^8.13.0"
  },
  "devDependencies": {
    "@pycheck/types": "^0.3.0",
    "@types/koa": "^2.13.6",
    "@types/koa-router": "^7.4.4",
    "@types/koa-static": "^4.0.2",
    "@types/node": "^18.15.11",
    "autoprefixer": "^10.4.4",
    "nodemon": "^2.0.22",
    "path": "^0.12.7",
    "ts-node": "^10.9.1",
    "tslib": "^2.5.0",
    "typescript": "^4.9.5"
  },
  "files": [
    "bin"
  ],
  "main": "bin/index.js",
  "bin": {
    "pycheckui": "bin/index.js"
  },
  "preferGlobal": true,
  "publishConfig": {
    "access": "public",
    "registry": "https://registry.npmjs.org/"
  }
}