-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.7 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
41
42
43
44
45
46
47
48
{
"name": "@bunet/core",
"module": "index.js",
"version": "1.0.17",
"type": "module",
"author": {
"email": "[email protected]",
"name": "Dao Khoi Nguyen",
"url": "https://www.linkedin.com/in/khoinguyenict"
},
"description": "@bunet/core is an open-source library designed to build robust applications with the support of performance monitoring tools like OpenTelemetry. This library simplifies the integration, monitoring, and scaling of systems, ensuring efficiency and reliability for developers.",
"keywords": ["bun", "bunjs", "bunet", "dknguyen", "DI", "OpenTelemetry", "open-source"],
"scripts": {
"test": "bun run ./test/index.ts",
"build": "rimraf tsconfig.tsbuildinfo && rimraf ./dist && tsc && tsc-alias && cp package.json dist/ && cp README.md dist/",
"build:publish": "npm run build && npm publish ./dist"
},
"devDependencies": {
"@types/bun": "latest",
"rimraf": "^6.0.1",
"ts-morph": "^25.0.0",
"tsc-alias": "^1.8.10"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"dependencies": {
"@opentelemetry/api": "^1.9.0",
"@opentelemetry/exporter-prometheus": "^0.57.0",
"@opentelemetry/instrumentation-http": "^0.57.0",
"@opentelemetry/sdk-metrics": "^1.30.0",
"@opentelemetry/sdk-node": "^0.57.0",
"@opentelemetry/sdk-trace-base": "^1.30.0",
"@opentelemetry/sdk-trace-node": "^1.30.0",
"pg": "^8.13.1",
"prettier": "^3.4.2",
"reflect-metadata": "^0.2.2",
"sequelize": "^6.37.5"
},
"repository": {
"type": "git",
"url": "https://github.com/nguyendkn/bunet.git"
},
"bugs": {
"url": "https://github.com/nguyendkn/bunet/issues"
},
"homepage": "https://github.com/nguyendkn/bunet#readme"
}