gdx 0.4.3 → 0.4.4
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 +20 -9
- package/dist/index.js +709 -644
- package/package.json +9 -4
- package/dist/index_old.js +0 -1337
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "gdx",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.4",
|
|
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": {
|
|
@@ -38,14 +38,16 @@
|
|
|
38
38
|
"transpile-esm": "bunx tsc -p lib/tsconfig.json && bun run scripts/transform-tools.mjs",
|
|
39
39
|
"check": "bun run ts-check && bun run lint && bun run build",
|
|
40
40
|
"lint": "bun run ts-check && eslint src --ext .ts -c eslint.config.ts --fix",
|
|
41
|
+
"test": "bun test",
|
|
41
42
|
"build": "bun run transpile-esm && bun build ./src/index.ts --outfile=./bin/gdx --compile --bytecode --production --keep-names",
|
|
42
43
|
"ts-check": "bunx tsc --noEmit",
|
|
43
|
-
"package:node": "bun run transpile-esm && bun build ./src/index.ts --outdir=./dist --target=node --external=keytar --external=cspell-lib --external=@shikijs/cli --external=yaml --format=esm --production --keep-names",
|
|
44
|
+
"package:node": "bun run transpile-esm && bun build ./src/index.ts --outdir=./dist --target=node --external=keytar --external=cspell-lib --external=@shikijs/cli --external=yaml --external=openai --external=fflate --format=esm --production --keep-names",
|
|
44
45
|
"prepack": "bun run package:node",
|
|
45
46
|
"postinstall": "node scripts/postinstall.cjs",
|
|
46
47
|
"prettier": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\" \"./*.md\"",
|
|
47
48
|
"dummy-editor": "bun ./scripts/dummyEditor.mjs",
|
|
48
49
|
"bench:litedent": "bun run ./test/benchmarks/litedent.bench.ts",
|
|
50
|
+
"bench:git-config": "bun run ./test/benchmarks/git-config.bench.ts",
|
|
49
51
|
"bench:strwrap": "bun run ./test/benchmarks/tools/strwrap.bench.js"
|
|
50
52
|
},
|
|
51
53
|
"devDependencies": {
|
|
@@ -54,17 +56,18 @@
|
|
|
54
56
|
"@babel/preset-env": "^7.29.2",
|
|
55
57
|
"@babel/preset-typescript": "^7.28.5",
|
|
56
58
|
"@eslint/js": "^9.39.4",
|
|
59
|
+
"@sinclair/typebox": "^0.34.49",
|
|
57
60
|
"@types/chai": "^5.2.3",
|
|
61
|
+
"@types/ini": "^4.1.1",
|
|
58
62
|
"@typescript-eslint/eslint-plugin": "^8.57.1",
|
|
59
63
|
"@typescript-eslint/parser": "^8.57.1",
|
|
60
|
-
"banditypes": "^0.3.0",
|
|
61
64
|
"bun-types": "latest",
|
|
62
65
|
"chai": "^6.2.2",
|
|
63
66
|
"dedent": "^1.7.2",
|
|
64
67
|
"eslint": "^10.0.3",
|
|
65
68
|
"execa": "^9.6.1",
|
|
69
|
+
"ini": "^6.0.0",
|
|
66
70
|
"jiti": "^2.6.1",
|
|
67
|
-
"openai": "^6.32.0",
|
|
68
71
|
"prettier": "^3.8.1",
|
|
69
72
|
"smol-toml": "^1.6.0",
|
|
70
73
|
"tinybench": "^6.0.0",
|
|
@@ -75,8 +78,10 @@
|
|
|
75
78
|
},
|
|
76
79
|
"dependencies": {
|
|
77
80
|
"@shikijs/cli": "^4.0.2",
|
|
81
|
+
"openai": "^6.32.0",
|
|
78
82
|
"cspell-lib": "9.4.0",
|
|
79
83
|
"diff": "^8.0.4",
|
|
84
|
+
"fflate": "^0.8.2",
|
|
80
85
|
"keytar": "^7.9.0",
|
|
81
86
|
"yaml": "^2.8.2"
|
|
82
87
|
}
|