-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathdeno.json
More file actions
70 lines (70 loc) · 3.07 KB
/
deno.json
File metadata and controls
70 lines (70 loc) · 3.07 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
{
"name": "@swamp/cli",
"version": "0.1.0",
"license": "AGPL-3.0-only",
"exports": "./main.ts",
"workspace": ["packages/client", "packages/testing"],
"tasks": {
"dev": "deno run --unstable-bundle --allow-read --allow-write --allow-env --allow-run --allow-sys main.ts",
"test": "deno test --parallel --unstable-bundle --allow-read --allow-write --allow-env --allow-run --allow-net --allow-sys",
"check": "deno check main.ts",
"lint": "deno lint",
"fmt": "deno fmt",
"compile": "deno run -A scripts/compile.ts",
"license-headers": "deno run --allow-read --allow-write scripts/add_license_headers.ts",
"audit": "deno run --allow-read --allow-net=api.osv.dev --allow-env=GITHUB_STEP_SUMMARY --allow-write scripts/audit_deps.ts",
"audit-actions": "deno run --allow-read --allow-net=api.github.com --allow-env=GITHUB_STEP_SUMMARY,GITHUB_TOKEN --allow-write scripts/audit_actions.ts",
"review-skills": "deno run --allow-read --allow-run --allow-env=GITHUB_STEP_SUMMARY --allow-write scripts/review_skills.ts",
"eval-skill-triggers": "deno run --allow-read --allow-run --allow-env --allow-write --allow-net scripts/eval_skill_triggers_promptfoo.ts"
},
"imports": {
"@cliffy/table": "jsr:@cliffy/table@^1.0.0",
"@std/assert": "jsr:@std/assert@^1.0.18",
"@std/fmt": "jsr:@std/fmt@^1.0.9",
"@std/cli": "jsr:@std/cli@^1.0.27",
"@std/fs": "jsr:@std/fs@^1.0.22",
"@std/path": "jsr:@std/path@^1.1.4",
"@std/yaml": "jsr:@std/yaml@^1.0.11",
"zod": "npm:zod@^4.3.6",
"@cliffy/command": "jsr:@cliffy/command@1",
"@logtape/logtape": "jsr:@logtape/logtape@^2.0.2",
"@logtape/pretty": "jsr:@logtape/pretty@^2.0.2",
"fzf": "npm:fzf@0.5.2",
"ink": "npm:ink@^6.8.0",
"ink-testing-library": "npm:ink-testing-library@4",
"react": "npm:react@^19.1.0",
"react/jsx-runtime": "npm:react@^19.1.0/jsx-runtime",
"@types/react": "npm:@types/react@^19.1.6",
"@aws-sdk/client-cloudcontrol": "npm:@aws-sdk/client-cloudcontrol@^3.1014.0",
"cel-js": "npm:@marcbachmann/cel-js@7.5.1",
"croner": "npm:croner@^9.0.0",
"fast-json-patch": "npm:fast-json-patch@^3.1.1",
"fast-check": "npm:fast-check@^3.22.0",
"marked": "npm:marked@^14.0.0",
"marked-terminal": "npm:marked-terminal@^7.3.0",
"@opentelemetry/api": "npm:@opentelemetry/api@^1.9.0",
"@opentelemetry/sdk-trace-base": "npm:@opentelemetry/sdk-trace-base@^1.30.0",
"@opentelemetry/otlp-transformer": "npm:@opentelemetry/otlp-transformer@^0.57.0",
"@opentelemetry/core": "npm:@opentelemetry/core@^1.30.0",
"@opentelemetry/context-async-hooks": "npm:@opentelemetry/context-async-hooks@^1.30.0",
"@opentelemetry/resources": "npm:@opentelemetry/resources@^1.30.0",
"@opentelemetry/semantic-conventions": "npm:@opentelemetry/semantic-conventions@^1.30.0"
},
"compilerOptions": {
"jsx": "react",
"strict": true
},
"exclude": [
"design/",
"scripts/",
".github/",
".agents/",
"agent-constraints/",
"workflows/",
".vault-test-vault/",
"resources/",
"evals/",
".swamp/",
".claude/worktrees/"
]
}