forked from IgorKowalczyk/active-dev
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.33 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.33 KB
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
{
"name": "active-dev",
"version": "1.1.0",
"description": "🛡️ Node.js app to get active developer badge on Discord",
"exports": null,
"type": "module",
"scripts": {
"start": "tsx index.ts",
"format": "prettier . --write --cache --ignore-unknown",
"format:check": "prettier . --check --cache --ignore-unknown",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/IgorKowalczyk/active-dev.git"
},
"keywords": [
"nodejs",
"discord",
"discord-badge",
"active-developer",
"active-developer-badge"
],
"author": "Igor Kowalczyk",
"license": "MIT",
"bugs": {
"url": "https://github.com/IgorKowalczyk/active-dev/issues"
},
"homepage": "https://github.com/IgorKowalczyk/active-dev#readme",
"dependencies": {
"chalk": "5.6.0",
"discord.js": "14.22.1",
"node-fetch": "3.3.2",
"ora": "8.2.0",
"prompts": "2.4.2"
},
"devDependencies": {
"@igorkowalczyk/eslint-config": "3.1.0",
"@igorkowalczyk/prettier-config": "3.1.0",
"@types/node": "24.3.0",
"@types/prompts": "2.4.9",
"eslint": "9.34.0",
"prettier": "3.6.2",
"tsx": "4.20.5"
},
"packageManager": "pnpm@10.15.0",
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"unrs-resolver"
]
}
}