-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 989 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
39
{
"private": true,
"name": "reddit-save",
"version": "1.0.0",
"description": "A simple script that saves Reddit post content.",
"main": "index.js",
"type": "module",
"scripts": {
"start": "ts-node-esm index.ts",
"dev": "ts-node-esm test.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/shaunbharat/reddit-save.git"
},
"author": "Shaun Bharat",
"license": "MIT",
"bugs": {
"url": "https://github.com/shaunbharat/reddit-save/issues"
},
"homepage": "https://github.com/shaunbharat/reddit-save#readme",
"devDependencies": {
"@types/cli-progress": "^3.11.0",
"@types/node": "^18.16.3",
"@types/snoowrap": "^1.19.0",
"reddit-oauth-helper": "^0.3.2",
"typescript": "^5.0.4"
},
"dependencies": {
"axios": "^1.4.0",
"chalk": "^5.2.0",
"cli-progress": "^3.12.0",
"csv": "^6.2.11",
"dotenv": "^16.0.3",
"snoowrap": "^1.15.2",
"steno": "^3.0.0",
"ts-node": "^10.9.1"
}
}