forked from dariusk/twitter-archiver
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
32 lines (32 loc) · 977 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
{
"name": "twitter-archiver",
"description": "Make your own simple, public, searchable Twitter archive",
"version": "1.0.0",
"scripts": {
"build": "tsc && copyfiles -f -E sample/sample.toml build && copyfiles -f -E sample/egg.jpg build && copyfiles -f -E sample/flexsearch.bundle.js build",
"exec": "node build/exec.js"
},
"repository": {
"type": "git",
"url": "https://github.com/mcclure/twitter-archiver"
},
"keywords": [],
"author": "Darius Kazemi",
"license": "MIT",
"homepage": "https://tinysubversions.com/twitter-archive/make-your-own/",
"devDependencies": {
"@types/adm-zip": "^0.5.5",
"@types/commander": "^2.12.2",
"@types/node": "^20.10.4",
"copyfiles": "^2.4.1",
"typescript": "^5.3.3"
},
"dependencies": {
"@types/fs-extra": "^11.0.4",
"adm-zip": "^0.5.10",
"commander": "^11.0.0",
"fs-extra": "^11.2.0",
"toml": "^3.0.0"
},
"type": "module"
}