-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 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
36
37
38
39
40
41
42
43
44
45
46
{
"name": "random-reddit",
"version": "2.0.3",
"description": "Random Reddit posts and images",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 0",
"build": "tsc",
"lint": "eslint --ext .ts .",
"lint:fix": "eslint --fix --ext .ts ."
},
"keywords": [
"reddit",
"api",
"random",
"post",
"image",
"picture"
],
"repository": {
"type": "git",
"url": "https://github.com/AlexAtHome/random-reddit.git"
},
"license": "MIT",
"dependencies": {
"consola": "^2.15.3",
"node-fetch": "^2.6.7"
},
"peerDependencies": {
"reddit-interfaces": "^1.0.7"
},
"devDependencies": {
"@types/node": "^18.17.7",
"@typescript-eslint/eslint-plugin": "^6.4.1",
"@typescript-eslint/parser": "^6.4.1",
"eslint": "^8.47.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"lefthook": "^1.4.9",
"prettier": "^3.0.2",
"reddit-interfaces": "^1.0.7",
"typescript": "^5.1.6"
}
}