-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.19 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.19 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
{
"name": "@logdash/node",
"version": "1.0.2",
"private": false,
"description": "How solo founders keep their SaaS apps healthy.",
"scripts": {
"build": "tsc -p tsconfig.lib.json",
"test": "vitest run",
"test:watch": "vitest",
"release": "pnpm build && changeset publish",
"changeset": "changeset",
"version-packages": "changeset version"
},
"author": "Logdash Team <logdash.contact@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/logdash-io/node-sdk.git"
},
"homepage": "https://github.com/logdash-io/node-sdk",
"devDependencies": {
"@changesets/cli": "^2.29.8",
"@swc/core": "^1.15.6",
"@types/node": "^25.0.3",
"prettier": "^3.7.4",
"typescript": "5.9.3",
"vitest": "^4.0.16"
},
"bugs": {
"url": "https://github.com/logdash-io/node-sdk/issues"
},
"packageManager": "pnpm@9.0.0",
"engines": {
"node": ">=18"
},
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"keywords": [
"observability",
"monitoring",
"logging",
"tracing",
"metrics"
],
"dependencies": {
"chalk": "^5.6.2"
}
}