-
Notifications
You must be signed in to change notification settings - Fork 0
/
deno.json
39 lines (39 loc) · 965 Bytes
/
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
{
"lock": false,
"lint": {
"rules": {
"exclude": [
"no-explicit-any"
]
},
"include": [
"./src",
"./scripts",
"./tests",
"./*.json"
]
},
"fmt": {
"useTabs": false,
"lineWidth": 80,
"indentWidth": 2,
"semiColons": true,
"singleQuote": false,
"proseWrap": "preserve",
"include": [
"./bin",
"./src",
"./scripts",
"./tests",
"./*.json"
]
},
"tasks": {
"build:libs": "deno run --allow-read --allow-write --allow-net ./scripts/doit.ts && yarn tsup src --format cjs,esm --no-splitting --dts",
"check:package-json-version": "deno run --allow-read ./scripts/check_package_json_version_for_release.ts",
"link-local": "yarn link; deno task build:libs && cd dist && yarn unlink && yarn link",
"publish:dry-run": "npm publish --access restricted --dry-run",
"publish:npm": "npm publish",
"test:unit": "yarn vitest"
}
}