-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeno.json
More file actions
39 lines (36 loc) · 1.41 KB
/
deno.json
File metadata and controls
39 lines (36 loc) · 1.41 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": "@pons/kernel",
"version": "0.4.2",
"license": "MIT",
"imports": {
"@std/path": "jsr:@std/path@^1",
"@pons/sdk": "../sdk/src/index.ts",
"@pons/sdk/config": "../sdk/src/config.ts",
"ajv": "npm:ajv@^8",
"ajv-formats": "npm:ajv-formats@^3",
"zod": "npm:zod@^3.24"
},
"exports": {
".": "./src/index.ts",
"./cli": "./src/cli.ts",
"./module-loader": "./src/module/loader.ts",
"./config": "./src/config/manager.ts"
},
"tasks": {
"dev": "deno run --allow-all --unstable-worker-options --watch src/index.ts",
"start": "deno run --allow-all src/index.ts",
"test": "deno test --allow-all tests/",
"test:unit": "deno test --allow-all tests/unit/",
"test:integration": "deno test --allow-all tests/integration/",
"bench": "deno run --allow-all benchmarks/run-all.ts",
"bench:boot": "deno run --allow-all benchmarks/boot-time.ts",
"bench:memory": "deno run --allow-all benchmarks/memory.ts",
"bench:shutdown": "deno run --allow-all benchmarks/shutdown-time.ts",
"bench:spawn": "deno run --allow-all benchmarks/module-spawn.ts",
"bench:ipc": "deno run --allow-all benchmarks/ipc-latency.ts",
"bench:rpc": "deno run --allow-all benchmarks/rpc-latency.ts",
"bench:restart": "deno run --allow-all benchmarks/module-restart.ts",
"bench:scale": "deno run --allow-all benchmarks/scale.ts",
"test": "deno test --allow-all tests/"
}
}