-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathdeno.json
More file actions
48 lines (48 loc) · 2 KB
/
deno.json
File metadata and controls
48 lines (48 loc) · 2 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
{
"name": "@runt/lib",
"version": "0.13.0",
"description": "Runtime agent library for building Anode runtime agents",
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "https://github.com/runtimed/anode.git"
},
"exports": {
".": "./mod.ts",
"./agent": "./src/runtime-agent.ts",
"./config": "./src/config.ts",
"./types": "./src/types.ts"
},
"imports": {
"@runt/schema": "jsr:@runt/schema@^0.13.0",
"@std/cli": "jsr:@std/cli@^1.0.0",
"@std/assert": "jsr:@std/assert@^1.0.0",
"@std/crypto": "jsr:@std/crypto@^1.0.0",
"@std/encoding": "jsr:@std/encoding@^1.0.0",
"@std/fs": "jsr:@std/fs@^1.0.0",
"@std/path": "jsr:@std/path@^1.0.0",
"npm:@livestore/adapter-web": "npm:@livestore/adapter-web@^0.3.1",
"npm:@livestore/livestore": "npm:@livestore/livestore@^0.3.1",
"npm:@livestore/sync-cf": "npm:@livestore/sync-cf@^0.3.1",
"npm:@opentelemetry/api": "npm:@opentelemetry/api@^1.9.0"
},
"tasks": {
"dev": "deno run --allow-net --allow-env examples/echo-agent.ts",
"test": "deno test --allow-net --allow-env --allow-read --allow-sys --unstable-broadcast-channel",
"test:unit": "deno test --allow-net --allow-env --allow-read --allow-sys --unstable-broadcast-channel src/",
"test:integration": "deno test --allow-net --allow-env --allow-read --allow-sys --unstable-broadcast-channel test/",
"test:watch": "deno test --allow-net --allow-env --allow-read --allow-sys --unstable-broadcast-channel --watch",
"test:summary": "echo '🧪 Running @runt/lib test suite...' && deno test --allow-net --allow-env --allow-read --allow-sys --unstable-broadcast-channel --reporter=pretty && echo '✅ All tests completed!'",
"check": "deno check mod.ts src/*.ts examples/*.ts",
"fmt": "deno fmt",
"lint": "deno lint"
},
"compilerOptions": {
"strict": true,
"lib": ["ESNext", "DOM"]
},
"publish": {
"include": ["mod.ts", "src/", "README.md"],
"exclude": ["**/*.test.ts", "**/test_*.ts", "examples/"]
}
}