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