-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.85 KB
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 1.85 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
{
"name": "antgrid",
"version": "0.1.0",
"private": true,
"workspaces": ["packages/antgrid-wire", "bridge", "bridge/plugin", "relay", "web", "evals"],
"scripts": {
"postinstall": "bun run --filter antgrid-web prisma:generate",
"setup": "bun run scripts/dev-setup.ts",
"worktree": "bun run scripts/worktree.ts",
"wt": "bun run scripts/wt-where.ts",
"sym": "bun run scripts/sym.ts",
"gen:icons": "bun run scripts/gen-brand-icons.ts",
"dev": "bun run scripts/dev.ts",
"dev:web": "bun run --filter antgrid-web dev",
"dev:relay": "bun run --filter antgrid-relay dev",
"dev:agent": "bun run --filter antgrid-bridge dev",
"dev:app": "cd app && flutter run -d windows",
"dev:protocol:add": "powershell.exe -NoProfile -NonInteractive -ExecutionPolicy Bypass -File scripts/windows-dev-protocol.ps1 -Action Add",
"dev:protocol:remove": "powershell.exe -NoProfile -NonInteractive -ExecutionPolicy Bypass -File scripts/windows-dev-protocol.ps1 -Action Remove",
"preaspire": "bun install",
"aspire": "cd aspire && aspire run",
"aspire:android": "bun run scripts/aspire-targets.ts android",
"aspire:ios": "bun run scripts/aspire-targets.ts ios",
"aspire:macos": "bun run scripts/aspire-targets.ts macos",
"aspire:all": "bun run scripts/aspire-targets.ts windows,android",
"aspire:mac:all": "bun run scripts/aspire-targets.ts macos,ios",
"typecheck": "bun run --filter='*' typecheck",
"check:font-tokens": "bash app/scripts/check_font_tokens.sh",
"dup-check": "jscpd",
"test": "bun run --filter='*' test",
"test:dev-protocol": "cd scripts && bun test windows-dev-protocol.test.ts",
"test:msix-manifest": "cd scripts && bun test patch-msix-manifest.test.ts",
"test:evals": "bun run --filter antgrid-evals test:evals"
},
"devDependencies": {
"jscpd": "5.0.9",
"sharp": "^0.35.3"
}
}