-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 757 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 757 Bytes
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
{
"name": "github-actions-database-persistence",
"version": "1.0.0",
"description": "GitHub Actions CRON workflow experiments with persisting CSV, SQLite and PostgreSQL databases to GitHub Actions cache and Git commits",
"license": "MIT",
"author": "Karl Horky",
"type": "module",
"dependencies": {
"better-sqlite3": "12.9.0",
"csv": "6.5.1",
"table": "6.9.0"
},
"devDependencies": {
"@types/better-sqlite3": "7.6.13",
"@types/node": "25.6.0",
"eslint": "10.2.0",
"eslint-config-upleveled": "10.0.0",
"prettier": "3.8.3",
"typescript": "6.0.3"
},
"packageManager": "[email protected]",
"pnpm": {
"onlyBuiltDependencies": [
"better-sqlite3",
"esbuild",
"unrs-resolver"
]
}
}