forked from ruvnet/ruflo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeno.json
More file actions
84 lines (84 loc) · 2.49 KB
/
deno.json
File metadata and controls
84 lines (84 loc) · 2.49 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
{
"nodeModulesDir": "auto",
"compilerOptions": {
"lib": ["deno.ns", "deno.window", "esnext"],
"strict": true,
"noUnusedLocals": false,
"noUnusedParameters": false,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"exactOptionalPropertyTypes": true
},
"lint": {
"rules": {
"tags": ["recommended"],
"include": [
"ban-untagged-todo",
"camelcase",
"eqeqeq",
"explicit-function-return-type",
"no-await-in-loop",
"no-console",
"no-const-assign",
"no-explicit-any",
"no-sparse-arrays",
"no-throw-literal",
"prefer-ascii"
]
},
"exclude": [
"tests/",
"scripts/"
]
},
"fmt": {
"useTabs": false,
"lineWidth": 100,
"indentWidth": 2,
"semiColons": true,
"singleQuote": true,
"proseWrap": "preserve"
},
"test": {
"include": [
"tests/**/*.test.ts"
],
"exclude": [
"tests/mocks/",
"tests/fixtures/"
]
},
"tasks": {
"dev": "deno run --allow-all --watch src/cli/index.ts",
"start": "deno run --allow-all src/cli/index.ts",
"test": "./scripts/test-runner.ts",
"test:unit": "./scripts/test-runner.ts --suites unit",
"test:integration": "./scripts/test-runner.ts --suites integration",
"test:e2e": "./scripts/test-runner.ts --suites e2e",
"test:watch": "./scripts/test-runner.ts --watch",
"test:coverage": "./scripts/test-runner.ts --coverage",
"coverage": "./scripts/coverage-report.ts",
"lint": "deno lint",
"fmt": "deno fmt",
"check": "deno check src/**/*.ts",
"build": "deno compile --allow-all --no-check --output bin/claude-flow src/cli/main.ts",
"install": "deno install --allow-all --name claude-flow src/cli/index.ts",
"clean": "rm -rf test-results coverage bin",
"ci": "deno fmt --check && deno lint && deno check src/**/*.ts && ./scripts/test-runner.ts --coverage --fail-fast"
},
"imports": {
"@std/": "https://deno.land/std@0.224.0/",
"@cliffy/command": "https://deno.land/x/cliffy@v1.0.0-rc.3/command/mod.ts",
"@cliffy/ansi/colors": "https://deno.land/x/cliffy@v1.0.0-rc.3/ansi/colors.ts",
"@cliffy/ansi": "https://deno.land/x/cliffy@v1.0.0-rc.3/ansi/mod.ts",
"@cliffy/prompt": "https://deno.land/x/cliffy@v1.0.0-rc.3/prompt/mod.ts",
"@cliffy/table": "https://deno.land/x/cliffy@v1.0.0-rc.3/table/mod.ts"
},
"exclude": [
"node_modules/",
"dist/",
"bin/",
"test-results/",
"coverage/"
]
}