-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 759 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 759 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
33
34
{
"name": "@prly/prly",
"version": "0.1.9",
"description": "Summarize your daily merged PRs with AI — for any GitHub repo",
"type": "commonjs",
"bin": {
"prly": "./dist/cli.js"
},
"files": [
"dist/",
"README.md"
],
"scripts": {
"build": "vite build",
"dev": "ts-node src/cli.ts",
"start": "node dist/cli.js"
},
"dependencies": {
"commander": "^12.1.0",
"dotenv": "^17.3.1",
"node-fetch": "^2.7.0",
"nodemailer": "^6.9.8",
"ora": "^4.1.1"
},
"devDependencies": {
"@types/node": "^20.19.37",
"@types/node-fetch": "^2.6.11",
"@types/nodemailer": "^6.4.14",
"javascript-obfuscator": "^5.4.1",
"ts-node": "^10.9.2",
"typescript": "^5.4.0",
"vite": "^5.4.21"
}
}