Path: blob/main/components/gitpod-protocol/package.json
3606 views
{1"name": "@gitpod/gitpod-protocol",2"version": "0.1.5",3"license": "UNLICENSED",4"repository": {5"type": "git",6"url": "https://github.com/gitpod-io/gitpod"7},8"main": "./lib/index.js",9"types": "./lib/index.d.ts",10"files": [11"lib",12"data/*.json",13"src"14],15"devDependencies": {16"@grpc/grpc-js": "1.12.6",17"@testdeck/mocha": "^0.3.3",18"@types/analytics-node": "^3.1.9",19"@types/chai-subset": "^1.3.3",20"@types/cookie": "^0.4.1",21"@types/express": "^4.17.13",22"@types/google-protobuf": "^3.15.5",23"@types/jaeger-client": "^3.18.3",24"@types/js-yaml": "^3.10.1",25"@types/mocha": "^10.0.1",26"@types/node": "^18.18.8",27"@types/random-number-csprng": "^1.0.0",28"@types/uuid": "^8.3.1",29"@types/ws": "^5.1.2",30"@typescript-eslint/eslint-plugin": "^5.5.0",31"@typescript-eslint/parser": "^5.5.0",32"chai": "^4.3.4",33"chai-subset": "^1.6.0",34"eslint": "^8.47.0",35"mocha": "^10.2.0",36"rimraf": "^2.6.2",37"ts-node": "^10.4.0",38"typescript": "^5.5.4",39"typescript-parser": "^2.6.1"40},41"scripts": {42"clean": "rimraf lib",43"build": "tsc",44"build:clean": "yarn clean && yarn lint && yarn build",45"lint": "yarn eslint src/*.ts src/**/*.ts",46"lint:fix": "yarn eslint src/*.ts src/**/*.ts --fix",47"test": "mocha './**/*.spec.js' --exclude './node_modules/**' --exit",48"test:leeway": "yarn build && yarn test",49"test-debug": "mocha --inspect-brk './**/*.spec.js' --exclude './node_modules/**' --exit",50"watch": "leeway exec --package .:lib --transitive-dependencies --filter-type yarn --components --parallel -- tsc -w --preserveWatchOutput"51},52"mocha": {53"require": [54"ts-node/register",55"reflect-metadata/Reflect",56"source-map-support/register"57],58"extensions": [59"ts"60],61"exit": true62},63"dependencies": {64"@bufbuild/protobuf": "^1.3.3",65"@connectrpc/connect": "1.1.2",66"@types/react": "17.0.32",67"abort-controller-x": "^0.4.0",68"ajv": "^6.5.4",69"analytics-node": "^6.0.0",70"configcat-node": "^8.0.0",71"cookie": "^0.4.2",72"event-iterator": "^2.0.0",73"express": "^4.17.3",74"google-protobuf": "^3.19.1",75"inversify": "^6.0.1",76"jaeger-client": "^3.18.1",77"js-yaml": "^3.10.0",78"nice-grpc-common": "^2.0.0",79"opentracing": "^0.14.5",80"parse-duration": "^1.1.2",81"prom-client": "^14.2.0",82"random-number-csprng": "^1.0.2",83"react": "17.0.2",84"react-dom": "17.0.2",85"reconnecting-websocket": "^4.4.0",86"reflect-metadata": "^0.1.13",87"uuid": "^8.3.2",88"vscode-jsonrpc": "^5.0.1",89"vscode-uri": "^3.0.3",90"vscode-ws-jsonrpc": "^0.2.0",91"ws": "^7.4.6"92}93}949596