@first087/agys 0.3.0 → 0.4.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.
Files changed (3) hide show
  1. package/README.md +26 -2
  2. package/dist/index.js +62 -54
  3. package/package.json +6 -4
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@first087/agys",
3
- "version": "0.3.0",
3
+ "version": "0.4.0",
4
4
  "description": "Manage multiple antigravity-cli oauth token accounts",
5
5
  "author": "Artit Kiuwilai",
6
6
  "repository": {
@@ -20,7 +20,8 @@
20
20
  ],
21
21
  "scripts": {
22
22
  "start": "bun run index.ts",
23
- "test": "bun test",
23
+ "test": "bun test src/**/*.test.ts",
24
+ "test:e2e": "bun test src/e2e.spec.ts",
24
25
  "build": "rm -rf dist && bun build index.ts --outdir ./dist --target bun --minify",
25
26
  "lint": "bunx tsc --noEmit",
26
27
  "publish:npm": "bun run build && npm publish --access public"
@@ -34,10 +35,11 @@
34
35
  ],
35
36
  "devDependencies": {
36
37
  "@types/bun": "latest",
37
- "@types/fs-extra": "^11.0.4"
38
+ "@types/fs-extra": "^11.0.4",
39
+ "@types/node": "^25.9.1"
38
40
  },
39
41
  "peerDependencies": {
40
- "typescript": "^5"
42
+ "typescript": "^6"
41
43
  },
42
44
  "dependencies": {
43
45
  "chalk": "^5.6.2",