crumbtrail-node 0.1.0

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/package.json ADDED
@@ -0,0 +1,62 @@
1
+ {
2
+ "name": "crumbtrail-node",
3
+ "version": "0.1.0",
4
+ "description": "Local Crumbtrail server, MCP evidence tools, Express middleware, and CLI for self-hosted debugging sessions.",
5
+ "license": "MIT",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "https://github.com/oshabana/crumbtrail.git",
9
+ "directory": "packages/node"
10
+ },
11
+ "keywords": [
12
+ "crumbtrail",
13
+ "debugging",
14
+ "mcp",
15
+ "observability",
16
+ "cli"
17
+ ],
18
+ "mcpName": "io.github.oshabana/crumbtrail",
19
+ "type": "module",
20
+ "main": "./dist/index.cjs",
21
+ "module": "./dist/index.js",
22
+ "types": "./dist/index.d.ts",
23
+ "bin": {
24
+ "crumbtrail-server": "./dist/cli.cjs"
25
+ },
26
+ "engines": {
27
+ "node": ">=22.15.0"
28
+ },
29
+ "exports": {
30
+ ".": {
31
+ "types": "./dist/index.d.ts",
32
+ "import": "./dist/index.js",
33
+ "require": "./dist/index.cjs"
34
+ },
35
+ "./package.json": "./package.json"
36
+ },
37
+ "files": [
38
+ "dist"
39
+ ],
40
+ "publishConfig": {
41
+ "access": "public"
42
+ },
43
+ "dependencies": {
44
+ "protobufjs": "^8.6.5",
45
+ "crumbtrail-core": "^0.1.0"
46
+ },
47
+ "devDependencies": {
48
+ "@types/express": "^5.0.6",
49
+ "@types/node": "^25.5.0",
50
+ "express": "^5.2.1",
51
+ "typescript": "^5.7.0"
52
+ },
53
+ "scripts": {
54
+ "build": "tsup",
55
+ "test": "vitest run",
56
+ "test:coverage": "vitest run --coverage",
57
+ "test:watch": "vitest",
58
+ "typecheck": "tsc --noEmit -p tsconfig.json",
59
+ "verify:package-runtime": "pnpm build && node scripts/verify-package-runtime.mjs",
60
+ "clean": "rm -rf dist"
61
+ }
62
+ }