peakurl 1.0.3 → 1.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +55 -25
- package/bin/peakurl.js +976 -543
- package/package.json +13 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "peakurl",
|
|
3
|
-
"version": "1.0
|
|
3
|
+
"version": "1.1.0",
|
|
4
4
|
"description": "Official CLI for creating, listing, and managing PeakURL short links from the terminal",
|
|
5
5
|
"homepage": "https://peakurl.org",
|
|
6
6
|
"bugs": {
|
|
@@ -39,6 +39,9 @@
|
|
|
39
39
|
"dev": "tsx src/index.ts",
|
|
40
40
|
"format": "prettier --write .",
|
|
41
41
|
"format:check": "prettier --check .",
|
|
42
|
+
"lint": "eslint . --cache",
|
|
43
|
+
"lint:fix": "eslint . --cache --fix",
|
|
44
|
+
"check": "npm run format:check && npm run lint && npm run typecheck",
|
|
42
45
|
"test": "npm run build && tsx --test test/*.test.ts",
|
|
43
46
|
"typecheck": "tsc --noEmit",
|
|
44
47
|
"prepare": "npm run build"
|
|
@@ -51,11 +54,17 @@
|
|
|
51
54
|
"env-paths": "^4.0.0"
|
|
52
55
|
},
|
|
53
56
|
"devDependencies": {
|
|
54
|
-
"@
|
|
57
|
+
"@eslint/js": "^10.0.1",
|
|
58
|
+
"@types/node": "^26.4.1",
|
|
59
|
+
"eslint": "^10.9.1",
|
|
60
|
+
"eslint-config-prettier": "^10.1.8",
|
|
61
|
+
"eslint-plugin-prettier": "^5.5.6",
|
|
62
|
+
"globals": "^17.12.0",
|
|
55
63
|
"prettier": "^3.9.6",
|
|
56
64
|
"tsup": "^8.5.1",
|
|
57
|
-
"tsx": "^4.23.
|
|
58
|
-
"typescript": "^
|
|
65
|
+
"tsx": "^4.23.13",
|
|
66
|
+
"typescript": "^5.9.3",
|
|
67
|
+
"typescript-eslint": "^8.69.0"
|
|
59
68
|
},
|
|
60
69
|
"license": "MIT"
|
|
61
70
|
}
|