-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.59 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.59 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
{
"name": "persisted-logs",
"version": "3.0.8-alpha.20241203",
"description": "An always persisted logging library.",
"main": "dist/app.js",
"types": "dist/app.d.ts",
"scripts": {
"prettier": "prettier --write src/**",
"test": "jest",
"build": "tsup",
"prepublish": "NODE_ENV=production npm run build",
"start": "ts-node src/index.ts",
"typeorm": "typeorm-ts-node-commonjs"
},
"keywords": [
"log",
"logging",
"persistance",
"search",
"no-network",
"nonnetwork",
"networkless",
"serverless",
"sql",
"sqlite",
"sqlite3",
"mysql",
"mysql2"
],
"repository": {
"type": "git",
"url": "git+https://github.com/TheOpenSourceU/persisted-logs.git"
},
"author": {
"name": "Frank Villasenor <frank@theOpenSourceU.org>",
"url": "https://www.theOpenSourceU.org/"
},
"license": "MIT",
"files": [
"dist",
"package.json",
"package-lock.json",
"Readme.md",
"LICENSE"
],
"dependencies": {
"@swc/core": "^1.6.6",
"autobind-decorator": "^2.4.0",
"bluebird": "^3.7.2",
"colors": "^1.4.0",
"dotenv": "^16.4.5",
"mysql2": "^3.11.5",
"promised-sqlite3": "^2.1.0",
"reflect-metadata": "^0.1.13",
"typeorm": "^0.3.20"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.11.24",
"jest": "latest",
"prettier": "latest",
"ts-jest": "latest",
"ts-node": "latest",
"tsup": "latest",
"typescript": "latest"
}
}