-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
126 lines (126 loc) · 3.67 KB
/
package.json
File metadata and controls
126 lines (126 loc) · 3.67 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "@use-tusk/drift-node-sdk",
"version": "0.1.44",
"description": "Node.js SDK for Tusk Drift instrumentation and replay",
"homepage": "https://github.com/Use-Tusk/drift-node-sdk",
"repository": {
"type": "git",
"url": "git+https://github.com/Use-Tusk/drift-node-sdk.git"
},
"type": "module",
"files": [
"dist/**",
"hook.mjs"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.cts",
"typesVersions": {
"*": {
"next": [
"./dist/next.d.cts"
]
}
},
"exports": {
".": {
"types": "./dist/index.d.cts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./next": {
"types": "./dist/next.d.cts",
"import": "./dist/next.js",
"require": "./dist/next.cjs"
},
"./hook.mjs": "./hook.mjs",
"./package.json": "./package.json",
"./instrumentation-manifest.json": "./dist/instrumentation-manifest.json"
},
"scripts": {
"prepare": "patch-package",
"build": "npm run typecheck && tsdown && npm run generate-manifest",
"build:watch": "tsdown --watch",
"typecheck": "tsc --noEmit",
"clean": "rm -rf dist",
"generate-manifest": "tsx scripts/generateManifest.ts",
"lint": "eslint 'src/**/*.ts'",
"lint:fix": "eslint 'src/**/*.ts' --fix",
"test": "ava --workerThreads false",
"test:bench": "ava --workerThreads false benchmarks/bench/sdk-disabled.bench.ts && ava --workerThreads false benchmarks/bench/sdk-active.bench.ts && ava --workerThreads false benchmarks/bench/sdk-active-with-transforms.bench.ts && tsx benchmarks/compare-benchmarks.ts",
"test:docker": "docker compose -f docker-compose.test.yml up -d --wait"
},
"keywords": [
"instrumentation",
"replay",
"nodejs",
"typescript",
"tusk"
],
"author": "",
"license": "Apache-2.0",
"devDependencies": {
"@bufbuild/buf": "^1.57.0",
"@grpc/grpc-js": "^1.13.4",
"@grpc/proto-loader": "^0.7.15",
"@opentelemetry/api": "1.7.0",
"@opentelemetry/resources": "^1.30.1",
"@opentelemetry/sdk-trace-node": "^1.30.1",
"@opentelemetry/semantic-conventions": "^1.26.0",
"@protobuf-ts/twirp-transport": "^2.11.1",
"@types/express": "^4.17.21",
"@types/google-protobuf": "^3.15.12",
"@types/js-yaml": "^4.0.9",
"@types/jsonpath": "^0.2.4",
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^20.19.19",
"@types/pg": "^8.15.5",
"@types/supertest": "^6.0.2",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"@use-tusk/drift-schemas": "^0.1.34",
"ava": "^6.4.1",
"axios": "^1.6.0",
"eslint": "^8.57.1",
"express": "^5.1.0",
"graphql": "^16.9.0",
"graphql-http": "^1.22.0",
"graphql-request": "^6.1.0",
"ioredis": "^5.8.1",
"jsonwebtoken": "^9.0.2",
"mongodb": "^6.0.0",
"mysql2": "^3.15.1",
"next": "^15.5.4",
"patch-package": "^8.0.0",
"pg": "^8.16.3",
"postgres": "^3.4.7",
"prettier": "^3.2.4",
"supertest": "^7.0.0",
"tinybench": "^5.0.1",
"ts-node": "^10.9.2",
"tsc-alias": "^1.8.16",
"tsdown": "^0.15.0",
"tsx": "^4.20.6",
"typescript": "^5.0.0"
},
"dependencies": {
"@babel/parser": "^7.29.2",
"@use-tusk/drift-core-node": "^0.1.8",
"ast-v8-to-istanbul": "^1.0.0",
"import-in-the-middle": "^1.14.4",
"js-yaml": "^4.1.0",
"jsonpath": "^1.1.1",
"require-in-the-middle": "^7.0.0",
"semver": "^7.7.2"
},
"engines": {
"node": ">=16.0.0"
},
"optionalDependencies": {
"@rolldown/binding-linux-x64-gnu": "^1.0.0-beta.47"
}
}