nebula-engine 1.0.0-beta3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,54 @@
1
+ {
2
+ "name": "nebula-engine",
3
+ "version": "1.0.0-beta3",
4
+ "description": "基于Hono的轻量级微服务引擎框架",
5
+ "main": "dist/index.js",
6
+ "types": "dist/index.d.ts",
7
+ "keywords": [
8
+ "microservice",
9
+ "hono",
10
+ "framework",
11
+ "typescript"
12
+ ],
13
+ "files": [
14
+ "dist",
15
+ "docs",
16
+ "README.md",
17
+ "LICENSE"
18
+ ],
19
+ "author": "",
20
+ "license": "MIT",
21
+ "dependencies": {
22
+ "@hono/node-server": "^1.19.7",
23
+ "@opentelemetry/api": "^1.9.0",
24
+ "ejson": "^2.2.3",
25
+ "etcd3": "^1.1.2",
26
+ "hono": "^4.10.8",
27
+ "nanoid": "^5.1.6",
28
+ "prettier": "^3.7.4",
29
+ "winston": "^3.19.0",
30
+ "zod": "^4.1.13"
31
+ },
32
+ "devDependencies": {
33
+ "@types/ejson": "^2.2.2",
34
+ "@types/node": "^25.0.1",
35
+ "@vitest/coverage-v8": "4.0.15",
36
+ "@vitest/ui": "^4.0.15",
37
+ "imean-service-client": "^1.6.0",
38
+ "tsup": "^8.5.1",
39
+ "tsx": "^4.21.0",
40
+ "typescript": "^5.9.3",
41
+ "vitest": "^4.0.15",
42
+ "@opentelemetry/api": "^1"
43
+ },
44
+ "peerDependencies": {
45
+ "@opentelemetry/api": "^1"
46
+ },
47
+ "scripts": {
48
+ "build": "tsup",
49
+ "dev": "tsx tests/integration/start-service.ts",
50
+ "test": "vitest --run",
51
+ "test:ui": "vitest --ui",
52
+ "test:coverage": "vitest --run --coverage"
53
+ }
54
+ }