-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 995 Bytes
/
package.json
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
{
"name": "frnds",
"version": "0.0.5",
"description": "frnds - Happy Friendship Day CLI : ASCII Text Art Greeting Wishes.",
"main": "./dist/frnds.js",
"scripts": {
"build": "tsc",
"dev": "ts-node src/frnds.ts",
"start": "node dist/frnds.js"
},
"publishConfig": {
"provenance": true
},
"bin": {
"frnds": "bin/frnds.mjs"
},
"keywords": [
"frnds",
"friends",
"friendship",
"friendshipday",
"wishes",
"greeting"
],
"author": "Santhosh Veer",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/mskian/friendship-day-cli.git"
},
"bugs": {
"url": "https://github.com/mskian/friendship-day-cli/issues"
},
"homepage": "https://github.com/mskian/friendship-day-cli",
"files": [
"dist/**/*",
"bin/**/*"
],
"devDependencies": {
"@types/node": "^22.13.1",
"ts-node": "^10.9.2"
},
"dependencies": {
"commander": "^12.1.0",
"typescript": "^5.7.3"
}
}