This repository was archived by the owner on Sep 10, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.58 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.58 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
{
"name": "instagramtobluesky",
"version": "0.7.5",
"description": "Import Instagram archive to a Bluesky account",
"main": "main.js",
"engines": {
"node": ">=20.12.0"
},
"scripts": {
"start": "npx tsc --sourceMap && node ./dist/main.js",
"start_log": "npm run start > import.log",
"compile": "npx tsc",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"coverage": "jest --coverage --detectOpenHandles --forceExit",
"coverage:ci": "jest --coverage --ci --detectOpenHandles --forceExit && codecov",
"coverage:open": "npm run coverage && open coverage/lcov-report/index.html",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix"
},
"dependencies": {
"@atproto/api": "^0.13.31",
"@ffprobe-installer/ffprobe": "^2.1.2",
"byte-size": "^9.0.1",
"dotenv": "^16.4.7",
"fluent-ffmpeg": "^2.1.3",
"luxon": "^3.5.0",
"multiformats": "^13.3.2",
"multihashes": "^4.0.3",
"pino": "^9.6.0",
"pino-pretty": "^13.0.0",
"process": "^0.11.10",
"sharp": "^0.33.5"
},
"devDependencies": {
"@eslint/js": "^9.21.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.10",
"@typescript-eslint/eslint-plugin": "^8.26.0",
"@typescript-eslint/parser": "^8.26.0",
"codecov": "^3.8.2",
"eslint": "^9.21.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jest": "^28.11.0",
"globals": "^16.0.0",
"jiti": "^2.4.2",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.0.0"
}
}