-
-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.68 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.68 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
{
"name": "@exceptionless/node",
"version": "3.0.0-dev",
"description": "JavaScript client for Exceptionless",
"author": {
"name": "exceptionless",
"url": "https://exceptionless.com"
},
"keywords": [
"exceptionless",
"error",
"feature",
"logging",
"tracking",
"reporting",
"node"
],
"repository": {
"url": "git://github.com/exceptionless/Exceptionless.JavaScript.git",
"type": "git"
},
"bugs": {
"url": "https://github.com/exceptionless/Exceptionless.JavaScript/issues"
},
"license": "Apache-2.0",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"unpkg": "dist/index.bundle.min.js",
"jsdelivr": "dist/index.bundle.min.js",
"exports": {
".": "./dist/index.js",
"./package.json": "./package.json"
},
"engines": {
"node": ">=18"
},
"scripts": {
"build": "tsc -p tsconfig.json && esbuild src/index.ts --bundle --sourcemap --platform=node --format=esm --outfile=dist/index.bundle.js",
"watch": "tsc -p ../core/tsconfig.json -w --preserveWatchOutput & tsc -p tsconfig.json -w --preserveWatchOutput & esbuild src/index.ts --bundle --platform=node --sourcemap --format=esm --watch --outfile=dist/index.bundle.js",
"test": "cd ../.. && vitest run --project node",
"test:watch": "cd ../.. && vitest --project node"
},
"sideEffects": false,
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@types/node": "^25.5.0",
"@types/node-localstorage": "^1.3.3",
"@types/stack-trace": "^0.0.33",
"esbuild": "^0.27.4"
},
"dependencies": {
"@exceptionless/core": "3.0.0-dev",
"node-localstorage": "^3.0.5",
"stack-trace": "^1.0.0-pre2"
}
}