-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeno.json
41 lines (41 loc) · 855 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
40
41
{
"$schema": "https://deno.land/x/deno/cli/schemas/config-file.v1.json",
"name": "@flowcore/sdk",
"description": "Flowcore SDK",
"version": "1.11.0",
"license": "MIT",
"exports": "./src/mod.ts",
"publish": {
"include": [
"src/**/*.ts",
"README.md",
"CHANGELOG.md"
]
},
"tasks": {
"build:npm": "deno run -A bin/build-npm.ts"
},
"imports": {
"@deno/dnt": "jsr:@deno/dnt@^0.41.3",
"@sinclair/typebox": "npm:@sinclair/[email protected]",
"@std/assert": "jsr:@std/assert@^1.0.6",
"@std/semver": "jsr:@std/semver@^1.0.3",
"rxjs": "npm:rxjs@^7.8.1"
},
"fmt": {
"exclude": [
"node_modules",
"npm"
],
"lineWidth": 120,
"indentWidth": 2,
"useTabs": false,
"semiColons": false
},
"lint": {
"exclude": [
"node_modules",
"npm"
]
}
}