-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.88 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 1.88 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "@gitpod/sdk",
"version": "1.0.1",
"description": "Public TypeScript SDK for Ona.",
"license": "Apache-2.0",
"private": false,
"main": "./lib/index.js",
"module": "./lib/esm/index.js",
"repository": {
"type": "git",
"url": "https://github.com/gitpod-io/gitpod-sdk-typescript.git"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"engines": {
"node": ">=20"
},
"files": [
"examples/**/*.ts",
"lib",
"README.md"
],
"exports": {
".": {
"types": "./lib/index.d.ts",
"import": "./lib/esm/index.js",
"require": "./lib/index.js"
},
"./gitpod/*": {
"types": "./lib/gitpod/*.d.ts",
"import": "./lib/esm/gitpod/*.js",
"require": "./lib/gitpod/*.js"
},
"./buf/*": {
"types": "./lib/buf/*.d.ts",
"import": "./lib/esm/buf/*.js",
"require": "./lib/buf/*.js"
},
"./gnostic/*": {
"types": "./lib/gnostic/*.d.ts",
"import": "./lib/esm/gnostic/*.js",
"require": "./lib/gnostic/*.js"
},
"./supervisor/*": {
"types": "./lib/supervisor/*.d.ts",
"import": "./lib/esm/supervisor/*.js",
"require": "./lib/supervisor/*.js"
}
},
"scripts": {
"build": "yarn run build:cjs && yarn run build:esm",
"build:cjs": "tsgo",
"build:esm": "tsgo --module es6 --outDir ./lib/esm && node scripts/prepare-esm.mjs",
"test": "node --test test/*.test.cjs",
"pack:release": "yarn build && yarn test && node -e \"require('node:fs').mkdirSync('dist', { recursive: true })\" && npm pack --json --pack-destination dist"
},
"devDependencies": {
"@typescript/native-preview": "7.0.0-dev.20260628.1",
"typescript": "^6.0.0"
},
"dependencies": {
"@bufbuild/protobuf": "^2.11.0",
"@connectrpc/connect": "^2.1.1",
"@connectrpc/connect-web": "^2.1.1"
},
"gitHead": "acab733b7887489eeb5deab42a001e94db13faf7"
}