-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeno.json
More file actions
116 lines (106 loc) · 5.77 KB
/
deno.json
File metadata and controls
116 lines (106 loc) · 5.77 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"workspace": [
"./browser",
"./dev-tools",
"./proxy-engine",
"./query-engine",
"./mcp-server",
"./runtime",
"./graphx",
"./crates/webgpu_x",
"./crates/transportx",
"./crates/bytecodex",
"./crates/serialx"
],
"nodeModulesDir": "none",
"lock": true,
"imports": {
"@std/assert": "jsr:@std/assert@^1.0.16",
"@browserx/webgpu_x": "jsr:@browserx/webgpu_x",
"@browserx/transportx": "./crates/transportx/transportx.ts",
"@browserx/bytecodex": "./crates/bytecodex/bytecodex.ts",
"@browserx/serialx": "./crates/serialx/serialx.ts"
},
"tasks": {
"browser:check": "cd browser && deno task check",
"browser:check:watch": "cd browser && deno task check:watch",
"browser:test": "cd browser && deno task test",
"browser:lint": "cd browser && deno task lint",
"browser:fmt": "cd browser && deno task fmt",
"browser:fmt:check": "cd browser && deno task fmt:check",
"proxy:start": "cd proxy-engine && deno task start",
"proxy:start:dev": "cd proxy-engine && deno task start:dev",
"proxy:start:config": "cd proxy-engine && deno task start:config",
"proxy:example": "cd proxy-engine && deno task example",
"proxy:check": "cd proxy-engine && deno task check",
"proxy:test": "cd proxy-engine && deno task test",
"proxy:lint": "cd proxy-engine && deno task lint",
"proxy:fmt": "cd proxy-engine && deno task fmt",
"proxy:fmt:check": "cd proxy-engine && deno task fmt:check",
"query:check": "cd query-engine && deno task check",
"query:check:watch": "cd query-engine && deno task check:watch",
"query:test": "cd query-engine && deno task test",
"query:test:unit": "cd query-engine && deno task test:unit",
"query:test:integration": "cd query-engine && deno task test:integration",
"query:test:performance": "cd query-engine && deno task test:performance",
"query:test:coverage": "cd query-engine && deno task test:coverage",
"query:test:watch": "cd query-engine && deno task test:watch",
"query:lint": "cd query-engine && deno task lint",
"query:lint:fix": "cd query-engine && deno task lint:fix",
"query:fmt": "cd query-engine && deno task fmt",
"query:fmt:check": "cd query-engine && deno task fmt:check",
"query:example": "cd query-engine && deno task example",
"query:example:watch": "cd query-engine && deno task example:watch",
"query:dev": "cd query-engine && deno task dev",
"query:bench": "cd query-engine && deno task bench",
"query:doc": "cd query-engine && deno task doc",
"query:cache": "cd query-engine && deno task cache",
"runtime:check": "cd runtime && deno task check",
"runtime:check:watch": "cd runtime && deno task check:watch",
"runtime:test": "cd runtime && deno task test",
"runtime:test:watch": "cd runtime && deno task test:watch",
"runtime:lint": "cd runtime && deno task lint",
"runtime:lint:fix": "cd runtime && deno task lint:fix",
"runtime:fmt": "cd runtime && deno task fmt",
"runtime:fmt:check": "cd runtime && deno task fmt:check",
"devtools:check": "cd dev-tools && deno task check",
"devtools:check:watch": "cd dev-tools && deno task check:watch",
"devtools:test": "cd dev-tools && deno task test",
"devtools:lint": "cd dev-tools && deno task lint",
"devtools:fmt": "cd dev-tools && deno task fmt",
"devtools:fmt:check": "cd dev-tools && deno task fmt:check",
"mcp:start": "cd mcp-server && deno task start",
"mcp:start:http": "cd mcp-server && deno task start:http",
"mcp:dev": "cd mcp-server && deno task dev",
"mcp:check": "cd mcp-server && deno task check",
"mcp:compile": "cd mcp-server && deno task compile",
"mcp:setup": "./mcp-server/setup.sh",
"mcp:server:start": "./mcp-server/browserx-mcp start",
"mcp:server:stop": "./mcp-server/browserx-mcp stop",
"mcp:server:restart": "./mcp-server/browserx-mcp restart",
"mcp:server:status": "./mcp-server/browserx-mcp status",
"mcp:server:logs": "./mcp-server/browserx-mcp logs",
"mcp:install-plugin": "./browserx-claude-plugin/install.sh",
"graphx:check": "cd graphx && deno task check",
"graphx:test": "cd graphx && deno task test",
"graphx:lint": "cd graphx && deno task lint",
"graphx:fmt": "cd graphx && deno task fmt",
"transportx:build": "cd crates/transportx && deno task build",
"transportx:bindings": "cd crates/transportx && deno task bindings",
"transportx:test": "cd crates/transportx && deno task test",
"transportx:check": "cd crates/transportx && deno task check",
"serialx:build": "cd crates/serialx && deno task build",
"serialx:bindings": "cd crates/serialx && deno task bindings",
"check:all": "deno task browser:check && deno task devtools:check && deno task proxy:check && deno task query:check && deno task runtime:check && deno task mcp:check && deno task graphx:check",
"test:all": "deno task browser:test && deno task devtools:test && deno task proxy:test && deno task query:test && deno task runtime:test && deno task graphx:test",
"lint:all": "deno task browser:lint && deno task devtools:lint && deno task proxy:lint && deno task query:lint && deno task runtime:lint",
"lint:fix:all": "cd browser && deno task lint && cd ../proxy-engine && deno task lint && cd ../query-engine && deno task lint:fix && cd ../runtime && deno task lint:fix",
"fmt:all": "deno task browser:fmt && deno task devtools:fmt && deno task proxy:fmt && deno task query:fmt && deno task runtime:fmt",
"fmt:check:all": "deno task browser:fmt:check && deno task devtools:fmt:check && deno task proxy:fmt:check && deno task query:fmt:check && deno task runtime:fmt:check",
"check": "deno task check:all",
"test": "deno task test:all",
"lint": "deno task lint:all",
"fmt": "deno task fmt:all",
"fmt:check": "deno task fmt:check:all"
}
}