-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.09 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.09 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
{
"name": "pushr",
"version": "1.0.2",
"description": "🚀 Push notifications to Discord, Telegram & more from your CLI - Zero config, npx ready",
"main": "dist/index.js",
"module": "src/index.ts",
"type": "module",
"bin": {
"pushr": "./dist/index.js"
},
"files": [
"dist",
"config.json.example",
"README.md"
],
"scripts": {
"dev": "bun run src/index.ts",
"build": "bun build src/index.ts --outdir dist --target node --minify",
"start": "bun run dist/index.js",
"test": "bun test",
"clean": "rm -rf dist"
},
"keywords": ["cli", "notifications", "discord", "telegram", "webhook", "npx"],
"author": "afrianjunior",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/afrianjunior/pushr.git"
},
"homepage": "https://github.com/afrianjunior/pushr#readme",
"bugs": {
"url": "https://github.com/afrianjunior/pushr/issues"
},
"devDependencies": {
"@types/bun": "latest"
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"@types/yargs": "^17.0.34",
"yargs": "^18.0.0"
}
}