-
Notifications
You must be signed in to change notification settings - Fork 5
/
deno.json
30 lines (30 loc) · 903 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
{
"compilerOptions": {
"lib": ["deno.ns", "dom"]
},
"name": "@scrapfly/scrapfly-sdk",
"exports": "./src/main.ts",
"version": "0.6.9",
"description": "SDK for Scrapfly.io API for web scraping, screenshotting and data extraction",
"tasks": {
"start": "deno run --allow-net --allow-read src/main.ts",
"test": "deno test --allow-net --allow-read __tests__",
"build-npm": "deno run -A build.ts",
"build-jsr": "deno publish --dry-run --allow-dirty",
"fmt": "deno fmt"
},
"fmt": {
"include": ["src/**/*.ts", "tests/**/*.ts"],
"useTabs": false,
"lineWidth": 120,
"indentWidth": 2,
"singleQuote": true
},
"lint": {
"include": ["src/**/*.ts", "tests/**/*.ts"],
"rules": {
"exclude": ["no-explicit-any"]
}
},
"imports": { "@deno/dnt": "jsr:@deno/dnt@^0.41.2", "@scrapfly/scrapfly-sdk": "jsr:@scrapfly/scrapfly-sdk@^0.6.2" }
}