devswitch-cli 1.0.1
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 +182 -0
- package/bin/devswitch.cjs +2440 -0
- package/package.json +49 -0
package/package.json
ADDED
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "devswitch-cli",
|
|
3
|
+
"version": "1.0.1",
|
|
4
|
+
"description": "Standalone command-line tool for DevSwitch — manage multiple Git profiles and SSH keys. Shares its database with the DevSwitch desktop app.",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"bin": {
|
|
7
|
+
"devswitch": "bin/devswitch.cjs"
|
|
8
|
+
},
|
|
9
|
+
"files": [
|
|
10
|
+
"bin/",
|
|
11
|
+
"README.md"
|
|
12
|
+
],
|
|
13
|
+
"scripts": {
|
|
14
|
+
"build": "node ./build.mjs",
|
|
15
|
+
"dev": "node --experimental-strip-types ./src/index.ts",
|
|
16
|
+
"prepublishOnly": "npm run build"
|
|
17
|
+
},
|
|
18
|
+
"engines": {
|
|
19
|
+
"node": ">=18"
|
|
20
|
+
},
|
|
21
|
+
"keywords": [
|
|
22
|
+
"git",
|
|
23
|
+
"ssh",
|
|
24
|
+
"ssh-keys",
|
|
25
|
+
"profile",
|
|
26
|
+
"cli",
|
|
27
|
+
"devswitch"
|
|
28
|
+
],
|
|
29
|
+
"author": {
|
|
30
|
+
"name": "umesh-saini",
|
|
31
|
+
"email": "umeshsaini8085@gmail.com"
|
|
32
|
+
},
|
|
33
|
+
"license": "MIT",
|
|
34
|
+
"homepage": "https://github.com/umesh-saini/DevSwitch/tree/main/cli#readme",
|
|
35
|
+
"repository": {
|
|
36
|
+
"type": "git",
|
|
37
|
+
"url": "git+https://github.com/umesh-saini/DevSwitch.git",
|
|
38
|
+
"directory": "cli"
|
|
39
|
+
},
|
|
40
|
+
"bugs": {
|
|
41
|
+
"url": "https://github.com/umesh-saini/DevSwitch/issues"
|
|
42
|
+
},
|
|
43
|
+
"publishConfig": {
|
|
44
|
+
"access": "public"
|
|
45
|
+
},
|
|
46
|
+
"devDependencies": {
|
|
47
|
+
"esbuild": "^0.24.0"
|
|
48
|
+
}
|
|
49
|
+
}
|