-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeno.json
More file actions
79 lines (79 loc) · 2.26 KB
/
Copy pathdeno.json
File metadata and controls
79 lines (79 loc) · 2.26 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
{
"$schema": "https://raw.githubusercontent.com/denoland/deno/main/cli/schemas/config-file.v1.json",
"name": "@kjanat/dreamcli",
"version": "3.0.1",
"license": "MIT",
"tasks": {
"check": {
"description": "Type-check source with Deno's checker (may conflict with @types/node)",
"command": "deno check src/index.ts src/testkit.ts src/runtime.ts"
},
"smoke": {
"description": "Run Deno adapter smoke test against source via import map",
"command": "deno run --allow-read --allow-env scripts/deno-smoke-test.ts"
},
"publish:dry": {
"description": "Dry-run JSR publish to verify package shape",
"command": "deno publish --dry-run --no-check"
},
"vitest:deno": {
"description": "Run Vitest tests in Deno",
"command": "deno run -A npm:vitest run"
},
"jsr:release-meta": {
"description": "Generate release metadata for JSR",
"command": "bash scripts/release-meta.sh jsr"
},
"jsr:publish": {
"description": "Publish package to JSR",
"command": "deno publish"
}
},
"importMap": "./import_map.json",
"exports": {
".": "./src/index.ts",
"./runtime": "./src/runtime.ts",
"./testkit": "./src/testkit.ts",
"./schema": "./src/schema.ts",
"./version": "./src/version.ts"
},
"compilerOptions": {
"strict": true,
"module": "preserve",
"paths": {
"@kjanat/dreamcli": ["./src/index.ts"],
"@kjanat/dreamcli/runtime": ["./src/runtime.ts"],
"@kjanat/dreamcli/testkit": ["./src/testkit.ts"],
"@kjanat/dreamcli/schema": ["./src/schema.ts"],
"@kjanat/dreamcli/version": ["./src/version.ts"],
"@kjanat/dreamcli/package.json": ["./package.json"]
}
},
"publish": {
"include": [
"CHANGELOG.md",
"LICENSE",
"README.md",
"dreamcli.schema.json",
"examples",
"skills",
"src"
],
"exclude": ["src/**/*.test.ts", "src/**/*test-helpers.ts", "src/**/AGENTS.md"]
},
"lib": ["deno.ns", "deno.shared_globals"],
"fmt": { "exclude": ["**"] },
"lint": { "rules": { "exclude": ["ban-types", "require-await"] } },
"nodeModulesDir": "manual",
"preferPackageJson": false,
"exclude": ["**/*.test.ts", "*.ts", "*cache/", "coverage/", "dist/", "scripts/", "**/*.tpl"],
"minimumDependencyAge": {
"exclude": [
"jsr:@kjanat/*",
"npm:@kjanat/*",
"npm:@runner-run/*",
"npm:ansispeck",
"npm:runner-run"
]
}
}