-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 1.79 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "@halvaradop/shortify-cli",
"version": "0.0.2",
"description": "A command-line tool that allows you to quickly and efficiently shorten URLs, generating short and easy-to-share links",
"private": false,
"main": "dist/index.js",
"bin": {
"shortify": "dist/index.js"
},
"scripts": {
"build": "tsc",
"dev": "tsc -w",
"link-cli": "npm unlink @halvaradop/shortify-cli && chmod +x dist/index.js && npm link @halvaradop/shortify-cli",
"restart": "rm -rf node_modules dist && npm unlink . && npm unlink -g . && npm unlink -g @halvaradop/shortify-cli && npm install && npm link",
"format": "npx prettier --write .",
"format:check": "npx prettier --check .",
"test": "vitest --run",
"test:watch": "vitest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/halvaradop/shortify-cli.git"
},
"keywords": [
"typescript",
"cli",
"terminal",
"commander",
"short links",
"shortener",
"url",
"command-line tool"
],
"author": "Hernan Alvarado <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/halvaradop/shortify-cli/issues"
},
"homepage": "https://github.com/halvaradop/shortify-cli#readme",
"dependencies": {
"commander": "^12.1.0"
},
"devDependencies": {
"@types/node": "^20.14.2",
"dotenv": "^16.4.5",
"prettier": "^3.3.3",
"typescript": "^5.4.5",
"vitest": "^2.0.5"
},
"files": [
"dist"
],
"prettier": {
"tabWidth": 4,
"semi": false,
"useTabs": true,
"singleQuote": false,
"printWidth": 130,
"overrides": [
{
"files": [
"*.json",
"README",
"*.yaml"
],
"options": {
"tabWidth": 2,
"useTabs": false
}
}
]
}
}