gdx 0.1.2 → 0.2.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 +10 -4
  2. package/dist/index.js +616 -622
  3. package/package.json +6 -5
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gdx",
3
- "version": "0.1.2",
3
+ "version": "0.2.0",
4
4
  "description": "Git, but with better DX. The raw power of Git, aligned with human workflows.",
5
5
  "homepage": "https://github.com/Type-Delta/gdx#readme",
6
6
  "bugs": {
@@ -34,10 +34,11 @@
34
34
  "start": "bun run src/index.ts",
35
35
  "start:profile": "bun --cpu-prof src/index.ts",
36
36
  "start:node": "tsx src/index.ts",
37
- "transpile-esm": "npx tsc -p lib/tsconfig.json && bun run scripts/transform-tools.mjs",
38
- "lint": "eslint src --ext .ts -c eslint.config.ts --fix",
37
+ "transpile-esm": "bunx tsc -p lib/tsconfig.json && bun run scripts/transform-tools.mjs",
38
+ "lint": "bun run ts-check && eslint src --ext .ts -c eslint.config.ts --fix",
39
39
  "build": "bun run transpile-esm && bun build ./src/index.ts --outfile=./bin/gdx --compile --bytecode --production --keep-names",
40
- "package:node": "bun run transpile-esm && bun build ./src/index.ts --outdir=./dist --target=node --external=keytar --format=esm --production --keep-names",
40
+ "ts-check": "bunx tsc --noEmit",
41
+ "package:node": "bun run transpile-esm && bun build ./src/index.ts --outdir=./dist --target=node --external=keytar --external=cspell-lib --format=esm --production --keep-names",
41
42
  "prepack": "bun run package:node",
42
43
  "postinstall": "node scripts/postinstall.cjs",
43
44
  "prettier": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\" \"./*.md\"",
@@ -60,13 +61,13 @@
60
61
  "prettier": "^3.6.2",
61
62
  "typescript": "^5.8.3",
62
63
  "typescript-eslint": "^8.50.0",
63
- "cspell-lib": "^9.4.0",
64
64
  "dedent": "^1.7.0",
65
65
  "execa": "^9.6.1",
66
66
  "openai": "^6.14.0",
67
67
  "smol-toml": "^1.5.2"
68
68
  },
69
69
  "dependencies": {
70
+ "cspell-lib": "^9.4.0",
70
71
  "keytar": "^7.9.0"
71
72
  }
72
73
  }