-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.86 KB
/
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"private": true,
"name": "mytweets",
"version": "1.0.0",
"description": "Search My all tweets",
"keywords": [
"twitter"
],
"homepage": "https://github.com/azu/mytweets",
"bugs": {
"url": "https://github.com/azu/mytweets/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/azu/mytweets.git"
},
"license": "MIT",
"author": "azu",
"sideEffects": false,
"type": "module",
"scripts": {
"import-twitter-archives": "node --loader ts-node/esm ./scripts/import-twitter-archives.ts",
"download-s3": "node --loader ts-node/esm ./scripts/download-s3.ts",
"fetch-tweets": "node --loader ts-node/esm ./scripts/fetch-tweets.ts",
"fetch-bsky": "node --loader ts-node/esm ./scripts/fetch-bsky.ts",
"upload-s3": "node --loader ts-node/esm ./scripts/upload-s3.ts",
"test": "mocha",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,css}\"",
"prepare": "git config --local core.hooksPath .githooks",
"build": "tsc -p .",
"watch": "tsc -p . --watch",
"clean": "rimraf lib/ module/",
"prepublishOnly": "npm run clean && npm run build"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,css}": [
"prettier --write"
]
},
"prettier": {
"printWidth": 120,
"singleQuote": false,
"tabWidth": 4,
"trailingComma": "none"
},
"devDependencies": {
"@types/firstline": "^2.0.2",
"@types/mocha": "^10.0.1",
"@types/node": "^20.3.3",
"lint-staged": "^13.2.2",
"mocha": "^10.2.0",
"prettier": "^2.8.8",
"rimraf": "^5.0.0",
"ts-node": "^10.9.1",
"ts-node-test-register": "^10.0.0",
"typescript": "^5.0.4"
},
"dependencies": {
"@atproto/api": "^0.3.13",
"@aws-sdk/client-s3": "^3.363.0",
"@aws-sdk/lib-storage": "^3.363.0",
"dotenv": "^10.0.0",
"firstline": "^2.0.2",
"read-last-lines": "^1.8.0",
"twitter-api-v2": "^1.14.2"
}
}