-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.53 KB
/
Copy pathpackage.json
File metadata and controls
93 lines (93 loc) · 2.53 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "@connectum/cli",
"version": "1.2.0",
"description": "CLI tools for Connectum framework: proto sync, service discovery",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"connectum": "./dist/index.js"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./commands/proto-sync": {
"types": "./dist/commands/proto-sync.d.ts",
"default": "./dist/commands/proto-sync.js"
},
"./commands/init": {
"types": "./dist/commands/init.d.ts",
"default": "./dist/commands/init.js"
},
"./commands/generate-service": {
"types": "./dist/commands/generate-service.d.ts",
"default": "./dist/commands/generate-service.js"
},
"./utils/reflection": {
"types": "./dist/utils/reflection.d.ts",
"default": "./dist/utils/reflection.js"
},
"./utils/emit": {
"types": "./dist/utils/emit.d.ts",
"default": "./dist/utils/emit.js"
}
},
"files": [
"dist",
"src"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Connectum-Framework/connectum.git",
"directory": "packages/cli"
},
"scripts": {
"start": "node dist/index.js",
"typecheck": "tsc --noEmit",
"test": "exodus-test --typescript tests/**/*.test.ts",
"test:unit": "exodus-test --typescript tests/unit/**/*.test.ts",
"test:integration": "exodus-test --typescript tests/integration/**/*.test.ts",
"test:bun": "echo 'SKIP: CLI has Node-specific gRPC transport deps'",
"test:esbuild": "exodus-test --esbuild tests/**/*.test.ts",
"lint": "biome check src",
"format": "biome check --write src",
"build": "tsup",
"clean": "rm -rf coverage dist"
},
"keywords": [
"cli",
"connectum",
"connectrpc",
"grpc",
"proto-sync",
"reflection"
],
"author": "Highload.Zone",
"license": "Apache-2.0",
"engines": {
"node": ">=22.13.0"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@bufbuild/protobuf": "catalog:",
"@clack/prompts": "^1.7.0",
"@connectrpc/connect": "catalog:",
"@connectrpc/connect-node": "catalog:",
"@lambdalisue/connectrpc-grpcreflect": "^0.5.0",
"citty": "^0.2.2",
"giget": "^3.3.1"
},
"devDependencies": {
"@biomejs/biome": "catalog:",
"@bufbuild/buf": "catalog:",
"@connectum/core": "workspace:^",
"@connectum/healthcheck": "workspace:^",
"@connectum/reflection": "workspace:^",
"tsup": "catalog:",
"typescript": "catalog:"
}
}