@dccxx/auggiegw 1.0.18 → 1.0.20
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/CLAUDE.md +148 -0
- package/auggie_shell_conversation.txt +96 -0
- package/auggie_shell_user_request.txt +23 -0
- package/auggiegw/https---d16.api.augmentcode.com-get-credit-info.bru +32 -0
- package/dist/cli.js +2625 -426
- package/justfile +5 -4
- package/package.json +6 -3
package/justfile
CHANGED
|
@@ -5,9 +5,10 @@ set shell := ["bash", "-cu"]
|
|
|
5
5
|
default:
|
|
6
6
|
@just --list
|
|
7
7
|
|
|
8
|
-
# Build the TypeScript project
|
|
8
|
+
# Build the TypeScript project using Bun's native build with Node.js target
|
|
9
9
|
build:
|
|
10
|
-
|
|
10
|
+
bun build src/cli.ts --outdir ./dist --target node --sourcemap=external
|
|
11
|
+
bunx tsc --emitDeclarationOnly
|
|
11
12
|
|
|
12
13
|
# Run linter with auto-fix
|
|
13
14
|
lint:
|
|
@@ -17,9 +18,9 @@ lint:
|
|
|
17
18
|
clean:
|
|
18
19
|
@{{ if os_family() == "windows" { "if (Test-Path dist) { Remove-Item -Recurse -Force dist }" } else { "rm -rf dist" } }}
|
|
19
20
|
|
|
20
|
-
# Publish package to npm (auto-increments version)
|
|
21
|
+
# Publish package to npm (auto-increments version, builds before publish)
|
|
21
22
|
[confirm("Are you sure you want to publish to npm?")]
|
|
22
|
-
publish:
|
|
23
|
+
publish: lint rebuild
|
|
23
24
|
node scripts/bump-version.js
|
|
24
25
|
npm publish --access public
|
|
25
26
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dccxx/auggiegw",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.20",
|
|
4
4
|
"description": "A Node.js TypeScript package",
|
|
5
5
|
"main": "./dist/cli.js",
|
|
6
6
|
"types": "./dist/cli.d.ts",
|
|
@@ -9,9 +9,10 @@
|
|
|
9
9
|
"auggiegw": "./dist/cli.js"
|
|
10
10
|
},
|
|
11
11
|
"scripts": {
|
|
12
|
-
"build": "tsc",
|
|
12
|
+
"build": "bun build src/cli.ts --outdir ./dist --target node --sourcemap=external && tsc --emitDeclarationOnly",
|
|
13
13
|
"lint": "bunx biome check --write",
|
|
14
14
|
"clean": "rm -rf dist",
|
|
15
|
+
"prepublishOnly": "bun run lint && bun run build",
|
|
15
16
|
"publish:auto": "node scripts/publish.js",
|
|
16
17
|
"dev:login": "bun run src/cli.ts login",
|
|
17
18
|
"dev:fetch": "bun run src/cli.ts fetch"
|
|
@@ -19,6 +20,7 @@
|
|
|
19
20
|
"devDependencies": {
|
|
20
21
|
"@biomejs/biome": "2.2.5",
|
|
21
22
|
"@types/node": "^24.7.0",
|
|
23
|
+
"@types/uuid": "^11.0.0",
|
|
22
24
|
"typescript": "^5.9.3"
|
|
23
25
|
},
|
|
24
26
|
"engines": {
|
|
@@ -26,6 +28,7 @@
|
|
|
26
28
|
},
|
|
27
29
|
"dependencies": {
|
|
28
30
|
"commander": "^14.0.1",
|
|
29
|
-
"ora": "^5.4.1"
|
|
31
|
+
"ora": "^5.4.1",
|
|
32
|
+
"uuid": "^13.0.0"
|
|
30
33
|
}
|
|
31
34
|
}
|