@imfelixyeung/git-swarm 0.1.1 → 0.1.2
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 +1 -0
- package/dist/cli.js +1333 -181
- package/package.json +34 -52
package/package.json
CHANGED
|
@@ -1,54 +1,36 @@
|
|
|
1
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
|
-
"publishConfig": {
|
|
38
|
-
"access": "public",
|
|
39
|
-
"provenance": true
|
|
40
|
-
},
|
|
41
|
-
"peerDependencies": {
|
|
42
|
-
"typescript": "^7"
|
|
43
|
-
},
|
|
44
|
-
"dependencies": {
|
|
45
|
-
"cli-table3": "^0.6.5",
|
|
46
|
-
"commander": "^15.0.0",
|
|
47
|
-
"dedent": "^1.7.2",
|
|
48
|
-
"p-limit": "^7.3.2",
|
|
49
|
-
"picocolors": "^1.1.1",
|
|
50
|
-
"simple-git": "^3.36.0",
|
|
51
|
-
"tinyglobby": "^0.2.17",
|
|
52
|
-
"zod": "^4.5.4"
|
|
53
|
-
}
|
|
2
|
+
"name": "@imfelixyeung/git-swarm",
|
|
3
|
+
"description": "Manage multiple Git repositories with ease.",
|
|
4
|
+
"version": "0.1.2",
|
|
5
|
+
"repository": {
|
|
6
|
+
"type": "git",
|
|
7
|
+
"url": "https://github.com/imfelixyeung/git-swarm"
|
|
8
|
+
},
|
|
9
|
+
"module": "src/cli.ts",
|
|
10
|
+
"bin": {
|
|
11
|
+
"git-swarm": "dist/cli.js"
|
|
12
|
+
},
|
|
13
|
+
"files": [
|
|
14
|
+
"dist"
|
|
15
|
+
],
|
|
16
|
+
"type": "module",
|
|
17
|
+
"private": false,
|
|
18
|
+
"scripts": {
|
|
19
|
+
"build": "bun build ./src/cli.ts --target=bun --outfile=dist/cli.js",
|
|
20
|
+
"dev": "bun run build --watch",
|
|
21
|
+
"prepack": "bun run build && jq 'del(.dependencies, .devDependencies, .peerDependencies)' package.json > package.json.tmp && mv package.json.tmp package.json",
|
|
22
|
+
"postpack": "git checkout package.json",
|
|
23
|
+
"typecheck": "tsc --noEmit",
|
|
24
|
+
"biome": "biome check",
|
|
25
|
+
"ci": "biome ci",
|
|
26
|
+
"test": "bun test",
|
|
27
|
+
"config-json-schema:update": "bun run src/scripts/make-config-json-schema.ts > src/config/schema.json",
|
|
28
|
+
"changeset": "changeset",
|
|
29
|
+
"changeset:version": "changeset version && biome check --write",
|
|
30
|
+
"release": "bun run build && changeset publish"
|
|
31
|
+
},
|
|
32
|
+
"publishConfig": {
|
|
33
|
+
"access": "public",
|
|
34
|
+
"provenance": true
|
|
35
|
+
}
|
|
54
36
|
}
|