-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.71 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 2.71 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
{
"name": "confdiff",
"version": "0.17.0",
"description": "Semantic, format-aware diff for config & structured-data files (JSON, JSONC, YAML, TOML, INI, .env, .properties, CSV, XML) — see what actually changed, compare across formats, and redact secrets so passwords/tokens never leak into a PR.",
"type": "module",
"bin": {
"confdiff": "dist/cli.js",
"confdiff-mcp": "dist/mcp.cjs"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"test": "node --test --import tsx test/*.test.ts",
"prepare": "npm run build && npm run build:mcp",
"prepublishOnly": "npm run build && npm run build:mcp",
"build:action": "esbuild src/cli.ts --bundle --platform=node --target=node20 --format=cjs --outfile=action/confdiff.cjs",
"build:web": "esbuild web/entry.ts --bundle --format=iife --platform=browser --target=es2020 --alias:node:path=./web/shims/path.js --outfile=docs/playground.js --minify && cp web/index.html docs/index.html && cp web/app.js docs/app.js && cp web/og.png docs/og.png && cp web/robots.txt docs/robots.txt && cp web/sitemap.xml docs/sitemap.xml && cp web/secrets-in-config-diffs.html docs/secrets-in-config-diffs.html && cp web/diff-kubernetes-manifests.html docs/diff-kubernetes-manifests.html && cp web/diff-docker-compose.html docs/diff-docker-compose.html && cp web/cross-format-config-diff.html docs/cross-format-config-diff.html && cp web/confdiff-preview.png docs/confdiff-preview.png",
"build:mcp": "node scripts/build-mcp.mjs",
"build:mcp-pkg": "node scripts/build-mcp-pkg.mjs"
},
"keywords": [
"diff",
"config",
"yaml",
"json",
"jsonc",
"toml",
"ini",
"dotenv",
"properties",
"semantic-diff",
"structured-diff",
"cli",
"ci",
"config-drift",
"kubernetes",
"redact",
"secrets",
"xml",
"csv"
],
"author": "Esperanza Volkov",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/esperanza-volkov/confdiff.git"
},
"bugs": {
"url": "https://github.com/esperanza-volkov/confdiff/issues"
},
"homepage": "https://github.com/esperanza-volkov/confdiff#readme",
"engines": {
"node": ">=18"
},
"dependencies": {
"fast-xml-parser": "^5.10.1",
"ini": "^5.0.0",
"picocolors": "^1.1.1",
"smol-toml": "^1.3.1",
"yaml": "^2.6.1"
},
"devDependencies": {
"@modelcontextprotocol/sdk": "^1.30.0",
"@types/node": "^22.10.0",
"esbuild": "^0.24.0",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"zod": "^3.25.76"
}
}