-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeno.json
More file actions
65 lines (65 loc) · 2.86 KB
/
Copy pathdeno.json
File metadata and controls
65 lines (65 loc) · 2.86 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
{
"name": "@air-friends/core",
"version": "0.30.0",
"exports": "./src/main.ts",
"unstable": ["net"],
"imports": {
"@std/assert": "jsr:@std/assert@^1.0.0",
"@std/crypto": "jsr:@std/crypto@^1.0.0",
"@std/path": "jsr:@std/path@^1.0.0",
"@std/testing": "jsr:@std/testing@^1.0.17",
"@std/yaml": "jsr:@std/yaml@^1.0.0",
"@std/dotenv": "jsr:@std/dotenv@^0.225.0",
"@std/fs": "jsr:@std/fs@^1.0.0",
"@std/json": "jsr:@std/json@^1.0.0",
"@std/flags": "jsr:@std/flags@^0.224.0",
"discord.js": "npm:discord.js@^14.0.0",
"misskey-js": "npm:misskey-js@2025.12.2",
"@agentclientprotocol/sdk": "npm:@agentclientprotocol/sdk@^0.14.1",
"prom-client": "npm:prom-client@^15",
"ventojs": "https://cdn.jsdelivr.net/gh/ventojs/vento@2.2.0/mod.ts",
"ventojs/": "https://cdn.jsdelivr.net/gh/ventojs/vento@2.2.0/",
"@core/": "./src/core/",
"@platforms/": "./src/platforms/",
"@skills/": "./src/skills/",
"@types/": "./src/types/",
"@utils/": "./src/utils/",
"@acp/": "./src/acp/"
},
"tasks": {
"dev": "deno run --watch --allow-net --allow-read --allow-write --allow-env --allow-run src/main.ts",
"start": "deno run --allow-net --allow-read --allow-write --allow-env --allow-run src/main.ts",
"start:config": "deno run --allow-net --allow-read --allow-write --allow-env --allow-run src/main.ts --config",
"test": "deno test --allow-net --allow-read --allow-write --allow-env --allow-run --parallel",
"test:watch": "deno test --allow-net --allow-read --allow-write --allow-env --allow-run --watch",
"test:coverage": "deno test --allow-net --allow-read --allow-write --allow-env --allow-run --coverage=coverage",
"coverage:report": "deno coverage coverage --exclude='tests/'",
"test:coverage:lcov": "deno test --allow-net --allow-read --allow-write --allow-env --allow-run --coverage=coverage && deno coverage coverage --lcov --output=coverage.lcov --exclude='tests/'",
"test:unit": "deno test --allow-net --allow-read --allow-write --allow-env --allow-run --parallel tests/ --ignore=tests/integration",
"test:integration": "deno test --allow-net --allow-read --allow-write --allow-env --allow-run tests/integration",
"ci": "deno fmt --check && deno lint && deno check src/main.ts && deno test --allow-net --allow-read --allow-write --allow-env --allow-run",
"fmt": "deno fmt src/ tests/",
"fmt:check": "deno fmt --check src/ tests/",
"lint": "deno lint src/ tests/",
"check": "deno check src/main.ts"
},
"fmt": {
"lineWidth": 100,
"indentWidth": 2,
"useTabs": false,
"singleQuote": false,
"proseWrap": "preserve"
},
"lint": {
"rules": {
"tags": ["recommended"]
},
"exclude": ["src/dashboard/public/"]
},
"compilerOptions": {
"strict": true,
"noImplicitAny": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true
}
}