-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.54 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 2.54 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "dex",
"version": "0.1.5",
"type": "module",
"publishConfig": {
"access": "public"
},
"description": "Extract and format code changes with surgical precision to keep your agents and LLM partners in check",
"keywords": [
"git",
"diff",
"context",
"llm",
"ai",
"agentic",
"vibecoder",
"code-changes",
"cli"
],
"author": "Scott Baggett <scott@scottbaggett.com>",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"dex": "./bin/dex"
},
"prettier": {
"tabWidth": 4,
"useTabs": false
},
"files": [
"dist",
"bin"
],
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "bun test",
"test:watch": "bun test --watch",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"format": "prettier --write \"src/**/*.ts\"",
"typecheck": "tsc --noEmit",
"prepublishOnly": "bun run build && bun run test && bun run lint"
},
"dependencies": {
"chalk": "^5.6.2",
"clipboardy": "^4.0.0",
"commander": "^12.1.0",
"diff": "^5.2.2",
"globby": "^14.1.0",
"gpt-tokenizer": "^3.4.0",
"ink": "^6.8.0",
"ink-select-input": "^6.2.0",
"ink-text-input": "^6.0.0",
"minimatch": "^10.2.2",
"ora": "^8.2.0",
"piscina": "^5.1.4",
"react": "^19.2.4",
"simple-git": "^3.32.1",
"ts-morph": "^26.0.0",
"zod": "^4.3.6"
},
"overrides": {
"minimatch": "^10.2.2",
"@isaacs/brace-expansion": "^5.0.1",
"ajv": "6.14.0",
"js-yaml": "^4.1.1"
},
"devDependencies": {
"@eslint/js": "^9.39.3",
"@types/diff": "^5.2.3",
"@types/js-yaml": "^4.0.9",
"@types/node": "^24.10.13",
"@types/react": "^19.2.14",
"eslint": "^9.39.3",
"eslint-plugin-react": "^7.37.5",
"globals": "^16.5.0",
"ink-testing-library": "^4.0.0",
"jiti": "^2.6.1",
"prettier": "^3.8.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.0"
},
"engines": {
"bun": ">=1.3.0"
},
"repository": {
"type": "git",
"url": "https://github.com/scottbaggett/dex.git"
},
"bugs": {
"url": "https://github.com/scottbaggett/dex/issues"
},
"homepage": "https://github.com/scottbaggett/dex#readme",
"packageManager": "bun@1.3.9"
}