-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 1.13 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
{
"name": "obsidian",
"version": "1.0.0",
"description": "",
"exports": "./packages/main/src/index.js",
"type": "module",
"private": true,
"scripts": {
"check": "tsc --noEmit",
"clean": "rm -rf dist",
"lint": "eslint .",
"start": "tsx --openssl-legacy-provider --import 'data:text/javascript,import { register } from \"node:module\"; import { pathToFileURL } from \"node:url\"; register(\"@opentelemetry/instrumentation/hook.mjs\", pathToFileURL(\"./\"));' --import ./instrument.js server.ts",
"test": "vitest run"
},
"keywords": [],
"author": "",
"license": "LGPL-3.0-or-later",
"devDependencies": {
"@eslint/js": "^9.3.0",
"@types/express": "^4.17.21",
"@types/node": "^20.12.12",
"@vitest/coverage-v8": "^2.0.0",
"eslint": "^9.3.0",
"globals": "^15.3.0",
"typescript": "^5.4.5",
"vitest": "^2.0.0"
},
"packageManager": "[email protected]",
"dependencies": {
"@opentelemetry/instrumentation": "^0.52.0",
"@sentry/node": "^8.7.0",
"@sentry/profiling-node": "^8.7.0",
"express": "^4.19.2",
"obsidian-main": "link:packages/main",
"tsx": "^4.11.0"
}
}