-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
35 lines (35 loc) · 1.09 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
{
"name": "interactive-feed",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node app.js $npm_config_publish",
"test": "node src/test.js $npm_config_publication",
"audit": "node src/audit.js",
"encrypt-secrets": "openssl aes-256-cbc -e -md sha256 -in ./secrets.json -out ./encrypted-secrets -k $KEY",
"decrypt-secrets": "openssl aes-256-cbc -d -md sha256 -in ./encrypted-secrets -out ./secrets.json -k $KEY"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sammorrisdesign/interactive-feed.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/sammorrisdesign/interactive-feed/issues"
},
"homepage": "https://github.com/sammorrisdesign/interactive-feed#readme",
"dependencies": {
"@atproto/api": "^0.13.16",
"cheerio": "^1.0.0-rc.12",
"dayjs": "^1.11.9",
"fast-xml-parser": "^4.0.8",
"fs-extra": "^10.1.0",
"node-cron": "^3.0.0",
"open-graph-scraper": "^6.3.2",
"rss-parser": "^3.12.0",
"sharp": "^0.33.5",
"twitter-api-v2": "^1.12.3"
}
}