-
-
Notifications
You must be signed in to change notification settings - Fork 124
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.36 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.36 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
55
{
"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.2",
"discord.js": "^14.25.1",
"dotenv": "17.2.3",
"node-fetch": "^3.3.2",
"ora": "^9.0.0",
"prompts": "^2.4.2"
},
"devDependencies": {
"@igorkowalczyk/eslint-config": "^3.2.1",
"@igorkowalczyk/prettier-config": "^3.2.1",
"@types/node": "^25.0.3",
"@types/prompts": "^2.4.9",
"eslint": "^9.39.2",
"prettier": "^3.7.4",
"tsx": "^4.21.0"
},
"packageManager": "pnpm@10.26.2",
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"unrs-resolver"
]
}
}