-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 3.21 KB
/
Copy pathpackage.json
File metadata and controls
101 lines (101 loc) · 3.21 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
98
99
100
101
{
"name": "interlinked-cli",
"version": "0.1.0",
"description": "Interlinked CLI — local hooks, taste enforcement, and developer observability for AI coding agents",
"keywords": [
"interlinked",
"mcp",
"cli",
"hooks",
"multi-agent",
"claude-code",
"copilot",
"gemini",
"codex"
],
"license": "MIT",
"author": "Quentin Cody <quentincody@gmail.com>",
"repository": {
"type": "git",
"url": "git+https://github.com/QuentinCody/interlinked-cli.git"
},
"homepage": "https://github.com/QuentinCody/interlinked-cli#readme",
"bugs": {
"url": "https://github.com/QuentinCody/interlinked-cli/issues"
},
"engines": {
"node": ">=22.0.0"
},
"os": [
"darwin",
"linux"
],
"publishConfig": {
"access": "public"
},
"files": [
"dist/",
"README.md",
"LICENSE",
"CHANGELOG.md",
"CONTRIBUTING.md",
"SECURITY.md",
".env.example"
],
"type": "module",
"sideEffects": false,
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./demo-runtime": {
"types": "./dist/lib/demo-runtime/index.d.ts",
"default": "./dist/lib/demo-runtime/index.js"
},
"./package.json": "./package.json"
},
"bin": {
"interlinked": "./dist/index.js",
"interlinked-hook": "./dist/hook-entry.js"
},
"scripts": {
"build": "tsup src/index.ts src/hook-entry.ts src/harness/server.ts src/lib/demo-runtime/index.ts --format esm --dts --clean && node scripts/fix-dist-dts.mjs && node scripts/copy-runtime-assets.mjs",
"build:watch": "tsup src/index.ts src/hook-entry.ts src/harness/server.ts src/lib/demo-runtime/index.ts --format esm --watch",
"dev": "tsx src/index.ts",
"typecheck": "tsgo --noEmit",
"typecheck:stable": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage --testTimeout=120000",
"bench": "vitest bench --run bench/",
"docs": "node --import tsx scripts/generate-docs.ts",
"docs:check": "node scripts/check-docs.mjs",
"docs:build": "node scripts/check-docs.mjs --build",
"docs:facts": "node scripts/extract-doc-facts.mjs",
"docs:audit-receipts": "node scripts/audit-receipts.mjs",
"prepack": "npm run build",
"prepare": "npm run build && npm run setup-hooks",
"prepublishOnly": "npm run typecheck:stable && npm test",
"setup-hooks": "node scripts/setup-git-hooks.mjs"
},
"packageManager": "npm@10.0.0",
"dependencies": {
"commander": "12.1.0"
},
"optionalDependencies": {
"@typescript/native-preview": "7.0.0-dev.20260421.2",
"typescript": "5.9.3"
},
"devDependencies": {
"@biomejs/biome": "2.4.13",
"@types/node": "20.19.33",
"@vitest/coverage-v8": "4.1.8",
"fast-check": "4.7.0",
"tsup": "8.5.1",
"tsx": "4.21.0",
"vitest": "4.1.8"
}
}