-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.41 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
46
47
48
49
50
51
52
53
{
"name": "mr-torres",
"author": "Pedro Torres <[email protected]> (https://absolutearray.com/)",
"license": "GPL-3.0-or-later",
"version": "0.2.1",
"description": "A personal card for Mr. Torres",
"homepage": "https://github.com/corfucinas/mr-torres",
"type": "module",
"packageManager": "[email protected]",
"main": "./dist/index.js",
"types": "./dist/src/index.d.ts",
"bin": "./dist/src/index.js",
"repository": {
"type": "git",
"url": "https://github.com/corfucinas/mr-torres.git"
},
"bugs": {
"url": "https://github.com/corfucinas/mr-torres/issues"
},
"keywords": [
"card",
"npm card",
"npx card",
"developer contact information",
"business card"
],
"scripts": {
"start": "tsc && node ./dist/src/index.js",
"build": "tsc",
"pub": "tsc && npm version minor & npm publish",
"lint": "eslint .",
"clean": "rm -r ./dist"
},
"dependencies": {
"boxen": "^8.0.1",
"chalk": "^5.0.0",
"inquirer": "^10.1.7",
"open": "^10.0.3",
"ora": "^8.0.1",
"tslib": "^2.3.1",
"typescript": "^5.0.2"
},
"devDependencies": {
"@types/inquirer": "^9.0.0",
"@typescript-eslint/eslint-plugin": "^7.0.1",
"@typescript-eslint/parser": "^8.0.1",
"eslint": "^9.0.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^7.0.0"
}
}