-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.07 KB
/
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
{
"name": "covertduck",
"version": "2.0.0",
"type": "module",
"description": "Terminal business card",
"author": "Simon St-Pierre <[email protected]> (https://covertduck.io/)",
"main": "dist/card.js",
"bin": "dist/card.js",
"repository": {
"type": "git",
"url": "git+https://github.com/CovertDuck/npx-card.git"
},
"scripts": {
"clean": "rm -rf dist",
"build": "pnpm run clean && tsc && cp src/data.json dist/data.json",
"prepublish": "pnpm run build",
"start": "node dist/card.js"
},
"dependencies": {
"boxen": "^7.1.1",
"clear": "^0.1.0",
"inquirer": "^9.2.20",
"open": "^10.1.0"
},
"devDependencies": {
"@types/clear": "^0.1.4",
"@types/inquirer": "^9.0.7",
"nodemon": "^3.1.0",
"ts-node": "^10.9.2",
"typescript": "^5.0.0"
},
"keywords": [
"npx",
"card",
"terminal",
"business",
"business card",
"covertduck"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/CovertDuck/npx-card/issues"
},
"homepage": "https://github.com/CovertDuck/npx-card#readme"
}