-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 2.2 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 2.2 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
{
"name": "@pathrule/shared",
"version": "0.0.0",
"private": true,
"license": "Apache-2.0",
"type": "module",
"exports": {
"./skills/agent-targets.js": "./src/skills/agent-targets.ts",
"./skills/disk-detection.js": "./src/skills/disk-detection.ts",
"./mcp-installers/registry.js": "./src/mcp-installers/registry.ts",
"./mcp-installers/codex-installer.js": "./src/mcp-installers/codex-installer.ts",
"./client-renderers/registry.js": "./src/client-renderers/registry.ts",
"./client-renderers/orchestrator.js": "./src/client-renderers/orchestrator.ts",
"./client-renderers/disk-writer.js": "./src/client-renderers/disk-writer.ts",
"./client-renderers/pipeline.js": "./src/client-renderers/pipeline.ts",
"./client-renderers/safe-write.js": "./src/client-renderers/safe-write.ts",
"./local-runtime/paths.js": "./src/local-runtime/paths.ts",
"./local-runtime/hook-index-writer.js": "./src/local-runtime/hook-index-writer.ts",
"./local-runtime/managed-file-ownership.js": "./src/local-runtime/managed-file-ownership.ts",
"./content-types.js": "./src/content-types.ts",
"./node-types.js": "./src/node-types.ts",
"./path-compare.js": "./src/path-compare.ts",
"./pathrule-protocol.js": "./src/pathrule-protocol.ts",
"./routing-types.js": "./src/routing-types.ts",
"./semantic-tags.js": "./src/semantic-tags.ts",
"./intelligence/types.js": "./src/intelligence/types.ts",
"./hook-supervisor/types.js": "./src/hook-supervisor/types.ts",
"./hook-supervisor/matcher.js": "./src/hook-supervisor/matcher.ts",
"./hook-supervisor/hook-command.js": "./src/hook-supervisor/hook-command.ts",
"./tools/node-path.js": "./src/tools/node-path.ts",
"./tools/overview.js": "./src/tools/overview.ts",
"./tools/refresh-types.js": "./src/tools/refresh-types.ts",
"./tools/dedup-types.js": "./src/tools/dedup-types.ts",
"./mcp-types.js": "./src/mcp-types.ts",
"./local-runtime/atomic-write.js": "./src/local-runtime/atomic-write.ts"
},
"dependencies": {
"@pathrule/core": "workspace:*",
"smol-toml": "^1.6.1"
},
"devDependencies": {
"@types/node": "^25.6.0",
"typescript": "^5.7.2"
},
"scripts": {
"typecheck": "tsc --noEmit"
}
}