This repository has been archived by the owner on Apr 7, 2024. It is now read-only.
generated from theogravity/boilerplate-typescript-package
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 2 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
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "electron-log-transport-datadog",
"version": "2.0.1",
"description": "Send logs to Datadog from electron-log in Electron.",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/types/index.d.js",
"scripts": {
"prepublishOnly": "npm run clean && npm run test && npm run lint && npm run build",
"build": "npm run build:cjs && npm run build:esm && npm run build:types",
"build:cjs": "node tools/cleanup cjs && tsc -p config/tsconfig.cjs.json",
"build:esm": "node tools/cleanup esm && tsc -p config/tsconfig.esm.json",
"build:types": "node tools/cleanup types && tsc -p config/tsconfig.types.json",
"clean": "node tools/cleanup",
"package": "npm run build && npm pack",
"format": "npx @biomejs/biome format src --write && npx @biomejs/biome format test --write",
"lint": "npx @biomejs/biome lint src && npx @biomejs/biome lint test",
"lint:check": "npx @biomejs/biome check --apply-unsafe src && npx @biomejs/biome check --apply-unsafe test",
"test": "jest --no-cache --runInBand",
"test:cov": "jest --coverage --no-cache --runInBand"
},
"publishConfig": {
"access": "public"
},
"files": [
"dist"
],
"keywords": [
"electron",
"datadog",
"log",
"logging",
"logger",
"transport",
"electron-log"
],
"author": "Theo Gravity <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/theogravity/electron-log-transport-datadog#readme",
"repository": {
"type": "git",
"url": "[email protected]:theogravity/electron-log-transport-datadog.git"
},
"bugs": {
"url": "https://github.com/theogravity/electron-log-transport-datadog/issues"
},
"dependencies": {
"@datadog/datadog-api-client": "^1.23.0",
"exit-hook": "^2.2.1",
"p-retry": "^4.6.2"
},
"peerDependencies": {
"electron-log": "^5.1.2"
},
"devDependencies": {
"@biomejs/biome": "1.6.3",
"@types/jest": "^29.5.12",
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"typescript": "^5.4.3"
}
}