-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (43 loc) · 969 Bytes
/
package.json
File metadata and controls
44 lines (43 loc) · 969 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
38
39
40
41
42
43
{
"name": "@openpanel/plausible-exporter",
"version": "0.7.0",
"description": "Barebones ClickHouse CSV exporter for Plausible events.",
"main": "bin/cli.js",
"bin": {
"op-plausible-exporter": "bin/cli.js"
},
"scripts": {
"start": "node bin/cli.js",
"prepublishOnly": "echo 'Publishing @openpanel/plausible-exporter...'"
},
"keywords": [
"plausible",
"analytics",
"clickhouse",
"csv",
"exporter",
"openpanel"
],
"author": "OpenPanel",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/openpanel/plausible-exporter.git"
},
"bugs": {
"url": "https://github.com/openpanel/plausible-exporter/issues"
},
"homepage": "https://github.com/openpanel/plausible-exporter#readme",
"files": [
"bin/",
"README.md",
"package.json"
],
"dependencies": {
"dotenv": "^16.4.5",
"@clickhouse/client": "^0.2.9"
},
"engines": {
"node": ">=16"
}
}