-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.24 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.24 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
{
"name": "acidlog",
"version": "1.0.0",
"homepage": "https://alexstevovich.com/a/acidlog-nodejs",
"author": {
"name": "Alex Stevovich",
"email": "dev@alexstevovich.com",
"url": "https://alexstevovich.com"
},
"description": "A lightweight persistent logger using SQLite for storing logs with optional retention and max entries limit.",
"type": "module",
"main": "./src/index.js",
"files": [
"./src"
],
"license": "Apache-2.0",
"scripts": {
"poshify": "npx poshify",
"pretty": "npx prettier --write .",
"lint": "eslint ./src/",
"lint:fix": "eslint --fix ./src/",
"test": "npx vitest --run",
"build": "npm run poshify && npm run pretty && npm run lint:fix && npm run lint"
},
"keywords": [
"logging",
"logger",
"sqlite",
"log-rotation",
"log-pruning",
"nodejs",
"acidlog"
],
"dependencies": {
"better-sqlite3": "^12.4.1"
},
"devDependencies": {
"eslint": "^9.36.0",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-prettier": "^5.5.4",
"poshify": "^1.0.0",
"prettier": "^3.6.2",
"vitest": "^3.2.4"
}
}