-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 936 Bytes
/
package.json
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
{
"name": "atproto2elasticsearch",
"version": "1.0.0-alpha4",
"main": "index.js",
"repository": "git@github.com:walterra/atproto2elasticsearch.git",
"author": "Walter Rafelsberger <walter@rafelsberger.at>",
"license": "MIT",
"scripts": {
"build": "node build.js",
"start": "node dist/bundle.js",
"pretest": "node build.js",
"prepublishOnly": "node build.js",
"release": "commit-and-tag-version"
},
"bin": "bin/atproto2elasticsearch.js",
"dependencies": {
"@skyware/firehose": "^0.3.2",
"cli-progress": "^3.12.0",
"dotenv": "^16.4.5",
"node-es-transformer": "^1.0.0-beta7",
"typescript": "^5.7.2"
},
"devDependencies": {
"@types/node": "^22.10.1",
"commit-and-tag-version": "^12.5.0",
"esbuild": "^0.24.0",
"git-cz": "^4.9.0",
"tsc-alias": "^1.8.10"
},
"files": [
"dist"
],
"config": {
"commitizen": {
"path": "git-cz"
}
}
}