-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.53 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.53 KB
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "gdx",
"version": "0.4.1",
"description": "Git, but with better DX. The raw power of Git, aligned with human workflows.",
"homepage": "https://github.com/Type-Delta/gdx#readme",
"bugs": {
"url": "https://github.com/Type-Delta/gdx/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Type-Delta/gdx.git"
},
"keywords": [
"git",
"dx",
"cli-wrapper"
],
"license": "MIT",
"author": "Type-Delta",
"type": "module",
"main": "dist/index.js",
"bin": {
"gdx": "scripts/launcher.cjs"
},
"files": [
"dist/*.js",
"scripts/postinstall.cjs",
"scripts/launcher.cjs",
"README.md",
"LICENSE"
],
"packageManager": "bun@1.3.10",
"scripts": {
"prepare-dev": "bun i && bun run transpile-esm",
"start": "bun run src/index.ts",
"start:profile": "bun --cpu-prof src/index.ts",
"start:node": "tsx src/index.ts",
"transpile-esm": "bunx tsc -p lib/tsconfig.json && bun run scripts/transform-tools.mjs",
"check": "bun run ts-check && bun run lint && bun run build",
"lint": "bun run ts-check && eslint src --ext .ts -c eslint.config.ts --fix",
"build": "bun run transpile-esm && bun build ./src/index.ts --outfile=./bin/gdx --compile --bytecode --production --keep-names",
"ts-check": "bunx tsc --noEmit",
"package:node": "bun run transpile-esm && bun build ./src/index.ts --outdir=./dist --target=node --external=keytar --external=cspell-lib --external=@shikijs/cli --format=esm --production --keep-names",
"prepack": "bun run package:node",
"postinstall": "node scripts/postinstall.cjs",
"prettier": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\" \"./*.md\"",
"dummy-editor": "bun ./scripts/dummyEditor.mjs"
},
"devDependencies": {
"@babel/cli": "^7.28.0",
"@babel/core": "^7.28.0",
"@babel/preset-env": "^7.27.2",
"@babel/preset-typescript": "^7.27.1",
"@eslint/js": "^9.22.0",
"@types/chai": "^5.2.3",
"@typescript-eslint/eslint-plugin": "^8.13.0",
"@typescript-eslint/parser": "^8.13.0",
"banditypes": "^0.3.0",
"bun-types": "latest",
"chai": "^6.2.1",
"dedent": "^1.7.0",
"eslint": "^9.22.0",
"execa": "^9.6.1",
"jiti": "^2.6.1",
"openai": "^6.14.0",
"prettier": "^3.6.2",
"smol-toml": "^1.5.2",
"tinybench": "^6.0.0",
"tsx": "^4.21.0",
"typescript": "^5.8.3",
"typescript-eslint": "^8.50.0",
"unicode-animations": "^1.0.3"
},
"dependencies": {
"@shikijs/cli": "^3.22.0",
"cspell-lib": "9.4.0",
"keytar": "^7.9.0"
}
}