mirror of
https://github.com/claude-code-best/claude-code.git
synced 2026-06-19 06:45:50 +00:00
feat: monorepo 构建完成
This commit is contained in:
8
packages/@ant/claude-for-chrome-mcp/package.json
Normal file
8
packages/@ant/claude-for-chrome-mcp/package.json
Normal file
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"name": "@ant/claude-for-chrome-mcp",
|
||||
"version": "1.0.0",
|
||||
"private": true,
|
||||
"type": "module",
|
||||
"main": "./src/index.ts",
|
||||
"types": "./src/index.ts"
|
||||
}
|
||||
11
packages/@ant/claude-for-chrome-mcp/src/index.ts
Normal file
11
packages/@ant/claude-for-chrome-mcp/src/index.ts
Normal file
@@ -0,0 +1,11 @@
|
||||
export const BROWSER_TOOLS: any[] = []
|
||||
|
||||
export class ClaudeForChromeContext {}
|
||||
|
||||
export class Logger {}
|
||||
|
||||
export type PermissionMode = any
|
||||
|
||||
export function createClaudeForChromeMcpServer(..._args: any[]): any {
|
||||
return null
|
||||
}
|
||||
8
packages/@ant/computer-use-input/package.json
Normal file
8
packages/@ant/computer-use-input/package.json
Normal file
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"name": "@ant/computer-use-input",
|
||||
"version": "1.0.0",
|
||||
"private": true,
|
||||
"type": "module",
|
||||
"main": "./src/index.ts",
|
||||
"types": "./src/index.ts"
|
||||
}
|
||||
2
packages/@ant/computer-use-input/src/index.ts
Normal file
2
packages/@ant/computer-use-input/src/index.ts
Normal file
@@ -0,0 +1,2 @@
|
||||
export class ComputerUseInput {}
|
||||
export class ComputerUseInputAPI {}
|
||||
13
packages/@ant/computer-use-mcp/package.json
Normal file
13
packages/@ant/computer-use-mcp/package.json
Normal file
@@ -0,0 +1,13 @@
|
||||
{
|
||||
"name": "@ant/computer-use-mcp",
|
||||
"version": "1.0.0",
|
||||
"private": true,
|
||||
"type": "module",
|
||||
"main": "./src/index.ts",
|
||||
"types": "./src/index.ts",
|
||||
"exports": {
|
||||
".": "./src/index.ts",
|
||||
"./sentinelApps": "./src/sentinelApps.ts",
|
||||
"./types": "./src/types.ts"
|
||||
}
|
||||
}
|
||||
30
packages/@ant/computer-use-mcp/src/index.ts
Normal file
30
packages/@ant/computer-use-mcp/src/index.ts
Normal file
@@ -0,0 +1,30 @@
|
||||
export const API_RESIZE_PARAMS: any = {}
|
||||
|
||||
export class ComputerExecutor {}
|
||||
|
||||
export type ComputerUseSessionContext = any
|
||||
export type CuCallToolResult = any
|
||||
export type CuPermissionRequest = any
|
||||
export type CuPermissionResponse = any
|
||||
export const DEFAULT_GRANT_FLAGS: any = {}
|
||||
export type DisplayGeometry = any
|
||||
export type FrontmostApp = any
|
||||
export type InstalledApp = any
|
||||
export type ResolvePrepareCaptureResult = any
|
||||
export type RunningApp = any
|
||||
export type ScreenshotDims = any
|
||||
export type ScreenshotResult = any
|
||||
|
||||
export function bindSessionContext(..._args: any[]): any {
|
||||
return null
|
||||
}
|
||||
|
||||
export function buildComputerUseTools(..._args: any[]): any[] {
|
||||
return []
|
||||
}
|
||||
|
||||
export function createComputerUseMcpServer(..._args: any[]): any {
|
||||
return null
|
||||
}
|
||||
|
||||
export const targetImageSize: any = null
|
||||
5
packages/@ant/computer-use-mcp/src/sentinelApps.ts
Normal file
5
packages/@ant/computer-use-mcp/src/sentinelApps.ts
Normal file
@@ -0,0 +1,5 @@
|
||||
export const sentinelApps: string[] = []
|
||||
|
||||
export function getSentinelCategory(_appName: string): string | null {
|
||||
return null
|
||||
}
|
||||
8
packages/@ant/computer-use-mcp/src/types.ts
Normal file
8
packages/@ant/computer-use-mcp/src/types.ts
Normal file
@@ -0,0 +1,8 @@
|
||||
export type ComputerUseConfig = any
|
||||
export type ComputerUseHostAdapter = any
|
||||
export type CoordinateMode = any
|
||||
export type CuPermissionRequest = any
|
||||
export type CuPermissionResponse = any
|
||||
export type CuSubGates = any
|
||||
export const DEFAULT_GRANT_FLAGS: any = {}
|
||||
export type Logger = any
|
||||
8
packages/@ant/computer-use-swift/package.json
Normal file
8
packages/@ant/computer-use-swift/package.json
Normal file
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"name": "@ant/computer-use-swift",
|
||||
"version": "1.0.0",
|
||||
"private": true,
|
||||
"type": "module",
|
||||
"main": "./src/index.ts",
|
||||
"types": "./src/index.ts"
|
||||
}
|
||||
1
packages/@ant/computer-use-swift/src/index.ts
Normal file
1
packages/@ant/computer-use-swift/src/index.ts
Normal file
@@ -0,0 +1 @@
|
||||
export class ComputerUseAPI {}
|
||||
8
packages/audio-capture-napi/package.json
Normal file
8
packages/audio-capture-napi/package.json
Normal file
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"name": "audio-capture-napi",
|
||||
"version": "1.0.0",
|
||||
"private": true,
|
||||
"type": "module",
|
||||
"main": "./src/index.ts",
|
||||
"types": "./src/index.ts"
|
||||
}
|
||||
2
packages/audio-capture-napi/src/index.ts
Normal file
2
packages/audio-capture-napi/src/index.ts
Normal file
@@ -0,0 +1,2 @@
|
||||
const stub: any = {}
|
||||
export default stub
|
||||
11
packages/color-diff-napi/package.json
Normal file
11
packages/color-diff-napi/package.json
Normal file
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"name": "color-diff-napi",
|
||||
"version": "1.0.0",
|
||||
"private": true,
|
||||
"type": "module",
|
||||
"main": "./src/index.ts",
|
||||
"types": "./src/index.ts",
|
||||
"dependencies": {
|
||||
"highlight.js": "latest"
|
||||
}
|
||||
}
|
||||
1006
packages/color-diff-napi/src/index.ts
Normal file
1006
packages/color-diff-napi/src/index.ts
Normal file
File diff suppressed because it is too large
Load Diff
8
packages/image-processor-napi/package.json
Normal file
8
packages/image-processor-napi/package.json
Normal file
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"name": "image-processor-napi",
|
||||
"version": "1.0.0",
|
||||
"private": true,
|
||||
"type": "module",
|
||||
"main": "./src/index.ts",
|
||||
"types": "./src/index.ts"
|
||||
}
|
||||
6
packages/image-processor-napi/src/index.ts
Normal file
6
packages/image-processor-napi/src/index.ts
Normal file
@@ -0,0 +1,6 @@
|
||||
export function getNativeModule(): null {
|
||||
return null
|
||||
}
|
||||
|
||||
const stub: any = {}
|
||||
export default stub
|
||||
8
packages/modifiers-napi/package.json
Normal file
8
packages/modifiers-napi/package.json
Normal file
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"name": "modifiers-napi",
|
||||
"version": "1.0.0",
|
||||
"private": true,
|
||||
"type": "module",
|
||||
"main": "./src/index.ts",
|
||||
"types": "./src/index.ts"
|
||||
}
|
||||
5
packages/modifiers-napi/src/index.ts
Normal file
5
packages/modifiers-napi/src/index.ts
Normal file
@@ -0,0 +1,5 @@
|
||||
export function prewarm(): void {}
|
||||
|
||||
export function isModifierPressed(_modifier: string): boolean {
|
||||
return false
|
||||
}
|
||||
8
packages/url-handler-napi/package.json
Normal file
8
packages/url-handler-napi/package.json
Normal file
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"name": "url-handler-napi",
|
||||
"version": "1.0.0",
|
||||
"private": true,
|
||||
"type": "module",
|
||||
"main": "./src/index.ts",
|
||||
"types": "./src/index.ts"
|
||||
}
|
||||
3
packages/url-handler-napi/src/index.ts
Normal file
3
packages/url-handler-napi/src/index.ts
Normal file
@@ -0,0 +1,3 @@
|
||||
export async function waitForUrlEvent(): Promise<string | null> {
|
||||
return null
|
||||
}
|
||||
Reference in New Issue
Block a user