generated from silverbulletmd/silverbullet-plug-template
-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathdeno.jsonc
More file actions
35 lines (35 loc) · 1.23 KB
/
deno.jsonc
File metadata and controls
35 lines (35 loc) · 1.23 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
{
"importMap": "import_map.json",
"tasks": {
"build": "deno run -A https://github.com/silverbulletmd/silverbullet/releases/download/edge/plug-compile.js -c deno.jsonc --debug --info silverbullet-ai.plug.yaml",
"build-release": "deno run -A https://github.com/silverbulletmd/silverbullet/releases/download/edge/plug-compile.js -c deno.jsonc --info silverbullet-ai.plug.yaml && deno task dist",
"dist": "deno run --allow-read --allow-write --allow-run scripts/build-dist.ts",
"update-readme": "deno run --allow-read --allow-write scripts/update-readme.ts",
"test": "deno test --coverage=cov_profile --allow-env",
"test:e2e": "cd e2e-tests && npm install && npx playwright test",
"test:e2e:ui": "cd e2e-tests && npm install && npx playwright test --ui",
"test:e2e:headed": "cd e2e-tests && npm install && npx playwright test --headed",
"playwright:install": "cd e2e-tests && npm install && npx playwright install"
},
"lint": {
"rules": {
"exclude": [
"no-explicit-any"
]
},
"exclude": [
"e2e-tests/"
]
},
"fmt": {
"lineWidth": 120,
"exclude": [
"*.md",
".*.md",
"**/*.md",
"*.plug.js",
"**/*.plug.js",
"e2e-tests/"
]
}
}