-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 761 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 761 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
31
32
{
"name": "readyourusers",
"version": "0.1.0",
"description": "Turn public GitHub issues into readable user demand maps",
"type": "module",
"bin": {
"ryu": "./dist/cli.js"
},
"scripts": {
"dev": "tsx src/cli.ts",
"build": "tsc",
"site:build": "tsx src/site/build.ts",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.39.0",
"@octokit/plugin-throttling": "^9.4.0",
"@octokit/rest": "^21.1.0",
"commander": "^13.1.0",
"dotenv": "^16.4.0",
"openai": "^6.33.0",
"zod": "^3.24.0",
"zod-to-json-schema": "^3.25.2"
},
"devDependencies": {
"@types/node": "^22.0.0",
"tsx": "^4.19.0",
"typescript": "^5.7.0",
"vitest": "^3.0.0"
}
}