forked from PlatformNetwork/bounty-challenge
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 890 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 890 Bytes
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
{
"name": "bounty-challenge-v2",
"version": "1.0.0",
"private": true,
"description": "GitHub Issue Reward System for Platform Network",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"start": "tsx src/index.ts",
"fetch": "tsx src/index.ts --skip-fetch=false",
"fetch-issues": "tsx src/fetch-issues.ts",
"clone-repo": "tsx src/clone-repo.ts",
"generate-worker-specs": "tsx src/generate-worker-specs.ts",
"analyze": "tsx src/index.ts --skip-fetch",
"analyze-issues": "tsx src/analyze-issues.ts",
"dispatch": "tsx src/orchestrator.ts",
"worker": "tsx src/worker.ts",
"dry-run": "tsx src/index.ts --dry-run",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"commander": "^12.1.0",
"dotenv": "^16.4.7"
},
"devDependencies": {
"@types/node": "^25.3.0",
"tsx": "^4.19.0",
"typescript": "^5.7.0"
}
}