-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
49 lines (49 loc) · 1.26 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
49
{
"name": "prisma-axiom",
"description": "Axiom observability middleware for Prisma",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"dependencies": {
"@opentelemetry/exporter-trace-otlp-proto": "^0.32.0",
"@opentelemetry/instrumentation": "^0.32.0",
"@opentelemetry/sdk-node": "^0.33.0",
"@prisma/instrumentation": "^4.2.1",
"@opentelemetry/resources": "^1.6.0",
"@opentelemetry/semantic-conventions": "^1.6.0"
},
"devDependencies": {
"@types/node": "^17.0.21",
"prettier": "^2.7.1",
"typescript": "^4.5.5"
},
"version": "0.2.1",
"repository": {
"type": "git",
"url": "git+https://github.com/axiomhq/prisma-axiom.git"
},
"keywords": [
"axiom",
"prisma",
"observability",
"middleware",
"tracing"
],
"author": "Axiom, Inc.",
"contributors": [
"Seif Lotfy <[email protected]>",
"Islam Shehata <[email protected]>",
"Arne Bahlo <[email protected]>"
],
"bugs": {
"url": "https://github.com/axiomhq/prisma-axiom/issues"
},
"homepage": "https://github.com/axiomhq/prisma-axiom#readme",
"scripts": {
"build": "tsc",
"prepare": "npm run build",
"format": "prettier --write src/*.ts",
"check-format": "prettier -c src/*.ts",
"test": "jest"
}
}