-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.08 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.08 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
{
"name": "voltlog-io",
"version": "1.0.6",
"description": "Structured logger for real-time infrastructure — lightweight, type-safe, OCPP-aware. Works standalone or with ocpp-ws-io.",
"repository": {
"type": "git",
"url": "https://github.com/rohittiwari-dev/voltlog-io"
},
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"browser": "./dist/client.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./client": {
"types": "./dist/client.d.ts",
"import": "./dist/client.mjs",
"require": "./dist/client.js"
}
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "biome lint .",
"format": "biome format --write .",
"check": "biome check --write .",
"prepublishOnly": "npm run build",
"prepare": "npm -e \"if (!process.env.CI) process.exit(1)\" || husky",
"commitlint": "commitlint --edit",
"changeset": "changeset",
"version": "changeset version",
"release": "npm run build && changeset publish"
},
"engines": {
"node": ">=18.0.0"
},
"keywords": [
"logger",
"structured-logging",
"iot",
"ocpp",
"ev-charging",
"websocket",
"type-safe",
"middleware",
"transformer",
"alerting",
"redaction",
"voltlog-io",
"voltlog",
"volt-logger"
],
"author": "Rohit Tiwari <rohit@rohittiwari.me>",
"homepage": "https://github.com/rohittiwari-dev/voltlog-io#readme",
"bugs": {
"url": "https://github.com/rohittiwari-dev/voltlog-io/issues"
},
"license": "MIT",
"files": [
"dist"
],
"devDependencies": {
"@biomejs/biome": "^2.4.4",
"@changesets/cli": "^2.29.8",
"@commitlint/cli": "^20.4.2",
"@commitlint/config-conventional": "^20.4.2",
"@types/node": "^22.19.13",
"@vitest/coverage-v8": "^3.2.4",
"husky": "^9.1.7",
"tsup": "^8.5.1",
"typescript": "^5.9.3",
"vitest": "^3.2.4"
}
}