@colbymchenry/codegraph 0.9.6 → 0.9.8
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 +122 -57
- package/dist/bin/codegraph.d.ts +25 -0
- package/dist/bin/node-version-check.d.ts +37 -0
- package/dist/bin/uninstall.d.ts +14 -0
- package/dist/context/formatter.d.ts +30 -0
- package/dist/context/index.d.ts +110 -0
- package/dist/db/index.d.ts +101 -0
- package/dist/db/migrations.d.ts +44 -0
- package/dist/db/queries.d.ts +344 -0
- package/dist/db/sqlite-adapter.d.ts +46 -0
- package/dist/directory.d.ts +57 -0
- package/dist/errors.d.ts +136 -0
- package/dist/extraction/dfm-extractor.d.ts +31 -0
- package/dist/extraction/generated-detection.d.ts +30 -0
- package/dist/extraction/grammars.d.ts +100 -0
- package/dist/extraction/index.d.ts +138 -0
- package/dist/extraction/languages/c-cpp.d.ts +4 -0
- package/dist/extraction/languages/csharp.d.ts +3 -0
- package/dist/extraction/languages/dart.d.ts +3 -0
- package/dist/extraction/languages/go.d.ts +3 -0
- package/dist/extraction/languages/index.d.ts +10 -0
- package/dist/extraction/languages/java.d.ts +3 -0
- package/dist/extraction/languages/javascript.d.ts +3 -0
- package/dist/extraction/languages/kotlin.d.ts +3 -0
- package/dist/extraction/languages/lua.d.ts +3 -0
- package/dist/extraction/languages/luau.d.ts +3 -0
- package/dist/extraction/languages/objc.d.ts +3 -0
- package/dist/extraction/languages/pascal.d.ts +3 -0
- package/dist/extraction/languages/php.d.ts +3 -0
- package/dist/extraction/languages/python.d.ts +3 -0
- package/dist/extraction/languages/ruby.d.ts +3 -0
- package/dist/extraction/languages/rust.d.ts +3 -0
- package/dist/extraction/languages/scala.d.ts +3 -0
- package/dist/extraction/languages/swift.d.ts +3 -0
- package/dist/extraction/languages/typescript.d.ts +3 -0
- package/dist/extraction/liquid-extractor.d.ts +52 -0
- package/dist/extraction/mybatis-extractor.d.ts +48 -0
- package/dist/extraction/parse-worker.d.ts +8 -0
- package/dist/extraction/svelte-extractor.d.ts +56 -0
- package/dist/extraction/tree-sitter-helpers.d.ts +28 -0
- package/dist/extraction/tree-sitter-types.d.ts +193 -0
- package/dist/extraction/tree-sitter.d.ts +291 -0
- package/dist/extraction/vue-extractor.d.ts +36 -0
- package/dist/extraction/wasm-runtime-flags.d.ts +38 -0
- package/dist/graph/index.d.ts +8 -0
- package/dist/graph/queries.d.ts +106 -0
- package/dist/graph/traversal.d.ts +127 -0
- package/dist/index.d.ts +492 -0
- package/dist/installer/config-writer.d.ts +28 -0
- package/dist/installer/index.d.ts +100 -0
- package/dist/installer/instructions-template.d.ts +18 -0
- package/dist/installer/targets/antigravity.d.ts +57 -0
- package/dist/installer/targets/claude.d.ts +56 -0
- package/dist/installer/targets/codex.d.ts +18 -0
- package/dist/installer/targets/cursor.d.ts +35 -0
- package/dist/installer/targets/gemini.d.ts +26 -0
- package/dist/installer/targets/hermes.d.ts +18 -0
- package/dist/installer/targets/kiro.d.ts +27 -0
- package/dist/installer/targets/opencode.d.ts +30 -0
- package/dist/installer/targets/registry.d.ts +35 -0
- package/dist/installer/targets/shared.d.ts +77 -0
- package/dist/installer/targets/toml.d.ts +52 -0
- package/dist/installer/targets/types.d.ts +101 -0
- package/dist/mcp/daemon-paths.d.ts +46 -0
- package/dist/mcp/daemon.d.ts +161 -0
- package/dist/mcp/engine.d.ts +105 -0
- package/dist/mcp/index.d.ts +112 -0
- package/dist/mcp/proxy.d.ts +81 -0
- package/dist/mcp/server-instructions.d.ts +19 -0
- package/dist/mcp/session.d.ts +77 -0
- package/dist/mcp/tools.d.ts +423 -0
- package/dist/mcp/transport.d.ts +188 -0
- package/dist/mcp/version.d.ts +19 -0
- package/dist/resolution/callback-synthesizer.d.ts +10 -0
- package/dist/resolution/frameworks/cargo-workspace.d.ts +18 -0
- package/dist/resolution/frameworks/csharp.d.ts +8 -0
- package/dist/resolution/frameworks/drupal.d.ts +51 -0
- package/dist/resolution/frameworks/expo-modules.d.ts +3 -0
- package/dist/resolution/frameworks/express.d.ts +8 -0
- package/dist/resolution/frameworks/fabric.d.ts +3 -0
- package/dist/resolution/frameworks/go.d.ts +8 -0
- package/dist/resolution/frameworks/index.d.ts +48 -0
- package/dist/resolution/frameworks/java.d.ts +8 -0
- package/dist/resolution/frameworks/laravel.d.ts +13 -0
- package/dist/resolution/frameworks/nestjs.d.ts +26 -0
- package/dist/resolution/frameworks/play.d.ts +19 -0
- package/dist/resolution/frameworks/python.d.ts +10 -0
- package/dist/resolution/frameworks/react-native.d.ts +3 -0
- package/dist/resolution/frameworks/react.d.ts +8 -0
- package/dist/resolution/frameworks/ruby.d.ts +8 -0
- package/dist/resolution/frameworks/rust.d.ts +8 -0
- package/dist/resolution/frameworks/svelte.d.ts +9 -0
- package/dist/resolution/frameworks/swift-objc.d.ts +37 -0
- package/dist/resolution/frameworks/swift.d.ts +10 -0
- package/dist/resolution/frameworks/vue.d.ts +9 -0
- package/dist/resolution/go-module.d.ts +26 -0
- package/dist/resolution/import-resolver.d.ts +68 -0
- package/dist/resolution/index.d.ts +116 -0
- package/dist/resolution/lru-cache.d.ts +24 -0
- package/dist/resolution/name-matcher.d.ts +32 -0
- package/dist/resolution/path-aliases.d.ts +68 -0
- package/dist/resolution/strip-comments.d.ts +27 -0
- package/dist/resolution/swift-objc-bridge.d.ts +134 -0
- package/dist/resolution/types.d.ts +209 -0
- package/dist/search/query-parser.d.ts +57 -0
- package/dist/search/query-utils.d.ts +53 -0
- package/dist/sync/git-hooks.d.ts +45 -0
- package/dist/sync/index.d.ts +19 -0
- package/dist/sync/watch-policy.d.ts +48 -0
- package/dist/sync/watcher.d.ts +191 -0
- package/dist/sync/worktree.d.ts +54 -0
- package/dist/types.d.ts +369 -0
- package/dist/ui/glyphs.d.ts +42 -0
- package/dist/ui/shimmer-progress.d.ts +11 -0
- package/dist/ui/shimmer-worker.d.ts +2 -0
- package/dist/ui/types.d.ts +17 -0
- package/dist/utils.d.ts +205 -0
- package/npm-sdk.js +75 -0
- package/package.json +18 -7
package/dist/utils.d.ts
ADDED
|
@@ -0,0 +1,205 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* CodeGraph Utilities
|
|
3
|
+
*
|
|
4
|
+
* Common utility functions for memory management, concurrency, batching,
|
|
5
|
+
* and security validation.
|
|
6
|
+
*
|
|
7
|
+
* @module utils
|
|
8
|
+
*
|
|
9
|
+
* @example
|
|
10
|
+
* ```typescript
|
|
11
|
+
* import { Mutex, processInBatches, MemoryMonitor, validatePathWithinRoot } from 'codegraph';
|
|
12
|
+
*
|
|
13
|
+
* // Use mutex for concurrent safety
|
|
14
|
+
* const mutex = new Mutex();
|
|
15
|
+
* await mutex.withLock(async () => {
|
|
16
|
+
* await performCriticalOperation();
|
|
17
|
+
* });
|
|
18
|
+
*
|
|
19
|
+
* // Process items in batches to manage memory
|
|
20
|
+
* const results = await processInBatches(items, 100, async (item) => {
|
|
21
|
+
* return await processItem(item);
|
|
22
|
+
* });
|
|
23
|
+
*
|
|
24
|
+
* // Monitor memory usage
|
|
25
|
+
* const monitor = new MemoryMonitor(512, (usage) => {
|
|
26
|
+
* console.warn(`Memory usage exceeded 512MB: ${usage / 1024 / 1024}MB`);
|
|
27
|
+
* });
|
|
28
|
+
* monitor.start();
|
|
29
|
+
* ```
|
|
30
|
+
*/
|
|
31
|
+
/**
|
|
32
|
+
* Validate that a resolved file path stays within the project root.
|
|
33
|
+
* Prevents path traversal attacks (e.g. node.filePath = "../../etc/passwd").
|
|
34
|
+
*
|
|
35
|
+
* @param projectRoot - The project root directory
|
|
36
|
+
* @param filePath - The relative file path to validate
|
|
37
|
+
* @returns The resolved absolute path, or null if it escapes the root
|
|
38
|
+
*/
|
|
39
|
+
export declare function validatePathWithinRoot(projectRoot: string, filePath: string): string | null;
|
|
40
|
+
/**
|
|
41
|
+
* Validate that a path is a safe project root directory.
|
|
42
|
+
*
|
|
43
|
+
* Rejects sensitive system directories and ensures the path is
|
|
44
|
+
* a real, existing directory. Used at MCP and API entry points
|
|
45
|
+
* to prevent arbitrary directory access.
|
|
46
|
+
*
|
|
47
|
+
* @param dirPath - The path to validate
|
|
48
|
+
* @returns An error message if invalid, or null if valid
|
|
49
|
+
*/
|
|
50
|
+
export declare function validateProjectPath(dirPath: string): string | null;
|
|
51
|
+
/**
|
|
52
|
+
* Check if a file path resolves to a location within the given root directory.
|
|
53
|
+
*
|
|
54
|
+
* Prevents path traversal attacks by ensuring the resolved absolute path
|
|
55
|
+
* starts with the resolved root path. Handles '..' sequences, symlink-like
|
|
56
|
+
* relative paths, and platform-specific separators.
|
|
57
|
+
*
|
|
58
|
+
* @param filePath - The path to check (can be relative or absolute)
|
|
59
|
+
* @param rootDir - The root directory that filePath must stay within
|
|
60
|
+
* @returns true if filePath resolves to a location within rootDir
|
|
61
|
+
*/
|
|
62
|
+
export declare function isPathWithinRoot(filePath: string, rootDir: string): boolean;
|
|
63
|
+
/**
|
|
64
|
+
* Like isPathWithinRoot but also resolves symlinks via fs.realpathSync.
|
|
65
|
+
*
|
|
66
|
+
* This catches symlink escapes where the logical path appears to be within
|
|
67
|
+
* root but the real path on disk points elsewhere. Falls back to logical
|
|
68
|
+
* path checking if realpath resolution fails (e.g. broken symlink).
|
|
69
|
+
*/
|
|
70
|
+
export declare function isPathWithinRootReal(filePath: string, rootDir: string): boolean;
|
|
71
|
+
/**
|
|
72
|
+
* Safely parse JSON with a fallback value.
|
|
73
|
+
* Prevents crashes from corrupted database metadata.
|
|
74
|
+
*/
|
|
75
|
+
export declare function safeJsonParse<T>(value: string, fallback: T): T;
|
|
76
|
+
/**
|
|
77
|
+
* Clamp a numeric value to a range.
|
|
78
|
+
* Used to enforce sane limits on MCP tool inputs.
|
|
79
|
+
*/
|
|
80
|
+
export declare function clamp(value: number, min: number, max: number): number;
|
|
81
|
+
/**
|
|
82
|
+
* Normalize a file path to use forward slashes.
|
|
83
|
+
* Fixes Windows backslash paths so glob matching works consistently.
|
|
84
|
+
*/
|
|
85
|
+
export declare function normalizePath(filePath: string): string;
|
|
86
|
+
/**
|
|
87
|
+
* Cross-process file lock using a lock file with PID tracking.
|
|
88
|
+
*
|
|
89
|
+
* Prevents multiple processes (e.g., git hooks, CLI, MCP server) from
|
|
90
|
+
* writing to the same database simultaneously.
|
|
91
|
+
*/
|
|
92
|
+
export declare class FileLock {
|
|
93
|
+
private lockPath;
|
|
94
|
+
private held;
|
|
95
|
+
/** Locks older than this are considered stale regardless of PID status */
|
|
96
|
+
private static readonly STALE_TIMEOUT_MS;
|
|
97
|
+
constructor(lockPath: string);
|
|
98
|
+
/**
|
|
99
|
+
* Acquire the lock. Throws if the lock is held by another live process.
|
|
100
|
+
*/
|
|
101
|
+
acquire(): void;
|
|
102
|
+
/**
|
|
103
|
+
* Release the lock
|
|
104
|
+
*/
|
|
105
|
+
release(): void;
|
|
106
|
+
/**
|
|
107
|
+
* Execute a function while holding the lock
|
|
108
|
+
*/
|
|
109
|
+
withLock<T>(fn: () => T): T;
|
|
110
|
+
/**
|
|
111
|
+
* Execute an async function while holding the lock
|
|
112
|
+
*/
|
|
113
|
+
withLockAsync<T>(fn: () => Promise<T>): Promise<T>;
|
|
114
|
+
/**
|
|
115
|
+
* Check if a process is still running
|
|
116
|
+
*/
|
|
117
|
+
private isProcessAlive;
|
|
118
|
+
}
|
|
119
|
+
/**
|
|
120
|
+
* Process items in batches to manage memory
|
|
121
|
+
*
|
|
122
|
+
* @param items - Array of items to process
|
|
123
|
+
* @param batchSize - Number of items per batch
|
|
124
|
+
* @param processor - Function to process each item
|
|
125
|
+
* @param onBatchComplete - Optional callback after each batch
|
|
126
|
+
* @returns Array of results
|
|
127
|
+
*/
|
|
128
|
+
export declare function processInBatches<T, R>(items: T[], batchSize: number, processor: (item: T, index: number) => Promise<R>, onBatchComplete?: (completed: number, total: number) => void): Promise<R[]>;
|
|
129
|
+
/**
|
|
130
|
+
* Simple mutex lock for preventing concurrent operations
|
|
131
|
+
*/
|
|
132
|
+
export declare class Mutex {
|
|
133
|
+
private locked;
|
|
134
|
+
private waitQueue;
|
|
135
|
+
/**
|
|
136
|
+
* Acquire the lock
|
|
137
|
+
*
|
|
138
|
+
* @returns A release function to call when done
|
|
139
|
+
*/
|
|
140
|
+
acquire(): Promise<() => void>;
|
|
141
|
+
/**
|
|
142
|
+
* Execute a function while holding the lock
|
|
143
|
+
*/
|
|
144
|
+
withLock<T>(fn: () => Promise<T> | T): Promise<T>;
|
|
145
|
+
/**
|
|
146
|
+
* Check if the lock is currently held
|
|
147
|
+
*/
|
|
148
|
+
isLocked(): boolean;
|
|
149
|
+
}
|
|
150
|
+
/**
|
|
151
|
+
* Chunked file reader for large files
|
|
152
|
+
*
|
|
153
|
+
* Reads a file in chunks to avoid loading entire file into memory.
|
|
154
|
+
*/
|
|
155
|
+
export declare function readFileInChunks(filePath: string, chunkSize?: number): AsyncGenerator<string, void, undefined>;
|
|
156
|
+
/**
|
|
157
|
+
* Debounce a function
|
|
158
|
+
*
|
|
159
|
+
* @param fn - Function to debounce
|
|
160
|
+
* @param delay - Delay in milliseconds
|
|
161
|
+
* @returns Debounced function
|
|
162
|
+
*/
|
|
163
|
+
export declare function debounce<T extends (...args: unknown[]) => unknown>(fn: T, delay: number): (...args: Parameters<T>) => void;
|
|
164
|
+
/**
|
|
165
|
+
* Throttle a function
|
|
166
|
+
*
|
|
167
|
+
* @param fn - Function to throttle
|
|
168
|
+
* @param limit - Minimum time between calls in milliseconds
|
|
169
|
+
* @returns Throttled function
|
|
170
|
+
*/
|
|
171
|
+
export declare function throttle<T extends (...args: unknown[]) => unknown>(fn: T, limit: number): (...args: Parameters<T>) => void;
|
|
172
|
+
/**
|
|
173
|
+
* Estimate memory usage of an object (rough approximation)
|
|
174
|
+
*
|
|
175
|
+
* @param obj - Object to measure
|
|
176
|
+
* @returns Approximate size in bytes
|
|
177
|
+
*/
|
|
178
|
+
export declare function estimateSize(obj: unknown): number;
|
|
179
|
+
/**
|
|
180
|
+
* Memory monitor for tracking usage during operations
|
|
181
|
+
*/
|
|
182
|
+
export declare class MemoryMonitor {
|
|
183
|
+
private checkInterval;
|
|
184
|
+
private peakUsage;
|
|
185
|
+
private threshold;
|
|
186
|
+
private onThresholdExceeded?;
|
|
187
|
+
constructor(thresholdMB?: number, onThresholdExceeded?: (usage: number) => void);
|
|
188
|
+
/**
|
|
189
|
+
* Start monitoring memory usage
|
|
190
|
+
*/
|
|
191
|
+
start(intervalMs?: number): void;
|
|
192
|
+
/**
|
|
193
|
+
* Stop monitoring
|
|
194
|
+
*/
|
|
195
|
+
stop(): void;
|
|
196
|
+
/**
|
|
197
|
+
* Get peak memory usage in bytes
|
|
198
|
+
*/
|
|
199
|
+
getPeakUsage(): number;
|
|
200
|
+
/**
|
|
201
|
+
* Get current memory usage in bytes
|
|
202
|
+
*/
|
|
203
|
+
getCurrentUsage(): number;
|
|
204
|
+
}
|
|
205
|
+
//# sourceMappingURL=utils.d.ts.map
|
package/npm-sdk.js
ADDED
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
//
|
|
3
|
+
// Programmatic / embedded SDK entry for @colbymchenry/codegraph (issue #354).
|
|
4
|
+
//
|
|
5
|
+
// The CLI/MCP `bin` (npm-shim.js) execs the per-platform bundle's OWN Node 24 so
|
|
6
|
+
// the tool never depends on the user's runtime. Embedded library consumers are
|
|
7
|
+
// the opposite case: they already run their own Node and just want the compiled
|
|
8
|
+
// API — `require("@colbymchenry/codegraph")` returning the CodeGraph class et al.
|
|
9
|
+
//
|
|
10
|
+
// The compiled library + its production dependencies (web-tree-sitter,
|
|
11
|
+
// tree-sitter-wasms, …) ship INSIDE the per-platform bundle, at
|
|
12
|
+
// @colbymchenry/codegraph-<platform>-<arch>/lib/dist/index.js
|
|
13
|
+
// (with the deps in the sibling lib/node_modules). Re-exporting that bundle keeps
|
|
14
|
+
// the main package thin — no second 50 MB copy of the grammars — while making the
|
|
15
|
+
// SDK work in the consumer's process. Types are a separate concern: the main
|
|
16
|
+
// package ships its own dist/**/*.d.ts tree (pointed at by `types`), built from
|
|
17
|
+
// the same release so it can never skew from the runtime it re-exports.
|
|
18
|
+
//
|
|
19
|
+
// node:sqlite (Node >= 22.5) is required to OPEN a graph, but only lazily inside
|
|
20
|
+
// the SQLite adapter — so loading this module is safe on older Node, and the
|
|
21
|
+
// node:sqlite requirement surfaces with an actionable error only when a DB is
|
|
22
|
+
// actually opened. Heavy extraction additionally wants the bundled launcher's
|
|
23
|
+
// --liftoff-only flag (the WASM Zone-OOM guard, issues #293/#298); an embedded
|
|
24
|
+
// host that drives large indexing should pass that flag to its own Node.
|
|
25
|
+
|
|
26
|
+
var path = require('path');
|
|
27
|
+
var os = require('os');
|
|
28
|
+
var fs = require('fs');
|
|
29
|
+
|
|
30
|
+
var target = process.platform + '-' + process.arch; // e.g. darwin-arm64, linux-x64
|
|
31
|
+
var pkg = '@colbymchenry/codegraph-' + target;
|
|
32
|
+
|
|
33
|
+
module.exports = require(resolveLibrary());
|
|
34
|
+
|
|
35
|
+
// Locate the compiled library entry inside the installed per-platform bundle.
|
|
36
|
+
// Throws an actionable error (rather than a bare MODULE_NOT_FOUND) when no bundle
|
|
37
|
+
// is present, so an embedded consumer knows exactly what to install.
|
|
38
|
+
function resolveLibrary() {
|
|
39
|
+
// 1) The npm-installed optional dependency — the normal case.
|
|
40
|
+
try {
|
|
41
|
+
return require.resolve(pkg + '/lib/dist/index.js');
|
|
42
|
+
} catch (e) {
|
|
43
|
+
/* fall through to the self-healed cache */
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
// 2) A bundle the CLI shim self-healed from GitHub Releases into the cache
|
|
47
|
+
// (issue #303). Same node/lib/bin layout as the npm package. We only REUSE a
|
|
48
|
+
// cached bundle here — unlike the CLI shim we never trigger a network
|
|
49
|
+
// download from inside require(), which must stay synchronous and cheap.
|
|
50
|
+
var cached = cachedLibrary();
|
|
51
|
+
if (cached) return cached;
|
|
52
|
+
|
|
53
|
+
throw new Error(
|
|
54
|
+
'codegraph: the programmatic API is unavailable because the platform bundle\n' +
|
|
55
|
+
'(' + pkg + ') is not installed.\n' +
|
|
56
|
+
'The compiled library ships inside that per-platform optional dependency.\n' +
|
|
57
|
+
'Fixes:\n' +
|
|
58
|
+
' - install from the official npm registry so the matching bundle is fetched:\n' +
|
|
59
|
+
' npm i @colbymchenry/codegraph --registry=https://registry.npmjs.org\n' +
|
|
60
|
+
' - or run the CLI once (e.g. `npx @colbymchenry/codegraph status`) to\n' +
|
|
61
|
+
' self-heal the bundle into ~/.codegraph, then require() will find it.'
|
|
62
|
+
);
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
function cachedLibrary() {
|
|
66
|
+
try {
|
|
67
|
+
var version = require(path.join(__dirname, 'package.json')).version;
|
|
68
|
+
var base = process.env.CODEGRAPH_INSTALL_DIR || path.join(os.homedir(), '.codegraph');
|
|
69
|
+
var lib = path.join(base, 'bundles', target + '-' + version, 'lib', 'dist', 'index.js');
|
|
70
|
+
if (fs.existsSync(lib)) return lib;
|
|
71
|
+
} catch (e) {
|
|
72
|
+
/* no readable cache → caller reports the install guidance */
|
|
73
|
+
}
|
|
74
|
+
return null;
|
|
75
|
+
}
|
package/package.json
CHANGED
|
@@ -1,20 +1,31 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@colbymchenry/codegraph",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.8",
|
|
4
4
|
"description": "Local-first code intelligence for AI agents (MCP). Self-contained — bundles its own runtime.",
|
|
5
5
|
"bin": {
|
|
6
6
|
"codegraph": "npm-shim.js"
|
|
7
7
|
},
|
|
8
|
+
"main": "npm-sdk.js",
|
|
9
|
+
"types": "dist/index.d.ts",
|
|
10
|
+
"exports": {
|
|
11
|
+
".": {
|
|
12
|
+
"types": "./dist/index.d.ts",
|
|
13
|
+
"default": "./npm-sdk.js"
|
|
14
|
+
},
|
|
15
|
+
"./package.json": "./package.json"
|
|
16
|
+
},
|
|
8
17
|
"optionalDependencies": {
|
|
9
|
-
"@colbymchenry/codegraph-darwin-arm64": "0.9.
|
|
10
|
-
"@colbymchenry/codegraph-darwin-x64": "0.9.
|
|
11
|
-
"@colbymchenry/codegraph-linux-arm64": "0.9.
|
|
12
|
-
"@colbymchenry/codegraph-linux-x64": "0.9.
|
|
13
|
-
"@colbymchenry/codegraph-win32-arm64": "0.9.
|
|
14
|
-
"@colbymchenry/codegraph-win32-x64": "0.9.
|
|
18
|
+
"@colbymchenry/codegraph-darwin-arm64": "0.9.8",
|
|
19
|
+
"@colbymchenry/codegraph-darwin-x64": "0.9.8",
|
|
20
|
+
"@colbymchenry/codegraph-linux-arm64": "0.9.8",
|
|
21
|
+
"@colbymchenry/codegraph-linux-x64": "0.9.8",
|
|
22
|
+
"@colbymchenry/codegraph-win32-arm64": "0.9.8",
|
|
23
|
+
"@colbymchenry/codegraph-win32-x64": "0.9.8"
|
|
15
24
|
},
|
|
16
25
|
"files": [
|
|
17
26
|
"npm-shim.js",
|
|
27
|
+
"npm-sdk.js",
|
|
28
|
+
"dist",
|
|
18
29
|
"README.md"
|
|
19
30
|
],
|
|
20
31
|
"license": "MIT"
|