-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.47 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.47 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "peakurl",
"version": "1.0.0",
"description": "Official CLI for creating, listing, and managing PeakURL short links from the terminal",
"homepage": "https://peakurl.org",
"bugs": {
"url": "https://github.com/PeakURL/CLI/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PeakURL/CLI.git"
},
"keywords": [
"peakurl",
"url shortener",
"short links",
"link shortening",
"cli",
"command line",
"terminal",
"productivity"
],
"type": "module",
"bin": {
"peakurl": "bin/peakurl.js"
},
"man": [
"man/peakurl.1"
],
"files": [
"bin",
"man"
],
"engines": {
"node": ">=20"
},
"scripts": {
"build": "tsup --config tsup.config.ts",
"dev": "tsx src/index.ts",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "npm run build && tsx --test test/*.test.ts",
"typecheck": "tsc --noEmit",
"prepare": "npm run build"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"dependencies": {
"commander": "^14.0.0",
"env-paths": "^3.0.0"
},
"devDependencies": {
"@types/node": "^24.0.0",
"prettier": "^3.6.2",
"tsup": "^8.5.0",
"tsx": "^4.20.6",
"typescript": "^5.9.3"
},
"license": "MIT"
}