-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.04 KB
/
package.json
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
{
"name": "function-sdk-typescript",
"version": "0.0.4",
"license": "Apache-2.0",
"description": "Crossplane Function SDK to build composition functions in TypeScript",
"homepage": "https://github.com/twobiers/function-sdk-typescript",
"author": "twobiers",
"type": "module",
"scripts": {
"build": "tsc",
"generate": "buf generate",
"test": "node --test"
},
"dependencies": {
"@bufbuild/buf": "^1.39.0",
"@bufbuild/protobuf": "^1.10.0",
"@bufbuild/protoc-gen-es": "^1.10.0",
"@connectrpc/connect": "^1.4.0",
"@connectrpc/connect-fastify": "^1.4.0",
"@connectrpc/connect-node": "^1.4.0",
"@connectrpc/protoc-gen-connect-es": "^1.4.0",
"fastify": "^4.28.1",
"pino": "^9.4.0",
"yargs": "^17.7.2"
},
"devDependencies": {
"@types/node": "^22.5.4",
"@types/yargs": "^17.0.33",
"typescript": "^5.5.4"
},
"repository": {
"type": "git",
"url": "https://github.com/twobiers/function-sdk-typescript.git"
},
"keywords": [
"crossplane",
"function",
"sdk"
]
}