generated from mys1024/starter-node-package
-
Notifications
You must be signed in to change notification settings - Fork 1
/
deno.json
49 lines (49 loc) · 1.38 KB
/
deno.json
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
{
"name": "@mys/worker-fn",
"version": "3.2.1",
"tasks": {
"run": "deno run src/main.ts",
"run:watch": "deno run --watch src/main.ts",
"cache": "deno cache --lock-write src/**/*.ts test/**/*.ts",
"cache:reload": "deno cache --lock-write --reload src/**/*.ts test/**/*.ts",
"test": "deno test -A",
"test:watch": "deno test -A --watch",
"test:lcov": "deno test -A --coverage && deno coverage --lcov --output=cov.lcov",
"check:lint": "deno check src/**/*.ts test/**/*.ts && deno lint && deno fmt --check",
"check:all": "deno task check:lint && deno task test && deno publish --allow-dirty --dry-run && cd npm && pnpm i && pnpm run build && pnpm publish --no-git-checks --dry-run && pnpm run clean && echo && echo ✅ All checks passed && echo",
"bump": "deno task check:all && deno run -A jsr:@mys/bump@1"
},
"imports": {
"@mys-x/m-rpc": "jsr:@mys/m-rpc@^0.12.2",
"@okikio/transferables": "jsr:@okikio/transferables@^1.0.2",
"@std/assert": "jsr:@std/[email protected]"
},
"exports": {
".": "./src/main.ts"
},
"publish": {
"include": [
"src",
"docs/concepts.png",
"deno.json",
"deno.jsonc",
"README*.md",
"LICENSE"
]
},
"lint": {
"exclude": [
"npm"
],
"rules": {
"exclude": [
"no-explicit-any"
]
}
},
"fmt": {
"exclude": [
"npm"
]
}
}