-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 798 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 798 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
30
31
32
33
34
35
36
37
{
"name": "pocketbase-import",
"version": "1.0.6",
"description": "A CLI tool for importing CSV data into PocketBase collections with authentication support.",
"keywords": [
"pocketbase",
"csv",
"import",
"cli",
"database",
"data-import",
"pocketbase-cli",
"csv-parser",
"automation",
"bulk-insert"
],
"bin": {
"pocketbase-import": "index.js"
},
"main": "index.js",
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git://github.com/3n3a/pocketbase-import.git"
},
"author": "3n3a",
"license": "ISC",
"dependencies": {
"commander": "^13.1.0",
"csv-parser": "^3.2.0",
"dotenv": "^16.4.7",
"pocketbase": "^0.25.2"
}
}