-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeno.json
More file actions
76 lines (76 loc) · 1.71 KB
/
deno.json
File metadata and controls
76 lines (76 loc) · 1.71 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "@lingodotdev/deno-sdk",
"version": "0.1.1",
"description": "Lingo.dev Deno SDK for Edge Runtime and Supabase Functions",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/lingodotdev/sdk-deno.git"
},
"bugs": {
"url": "https://github.com/lingodotdev/sdk-deno/issues"
},
"homepage": "https://github.com/lingodotdev/sdk-deno#readme",
"keywords": [
"localization",
"translation",
"i18n",
"deno",
"supabase",
"edge-functions",
"lingo",
"sdk"
],
"exports": {
".": "./mod.ts"
},
"tasks": {
"check": "deno check src/mod.ts && deno check examples/*.ts",
"test": "deno test --allow-net tests/*",
"test:watch": "deno test --allow-net --watch tests/*",
"fmt": "deno fmt src/ tests/ examples/",
"fmt:check": "deno fmt --check",
"lint": "deno lint src/ tests/ examples/",
"dev": "deno run --allow-net --watch src/mod.ts",
"publish:check": "deno publish --dry-run --allow-dirty",
"examples": "deno run --allow-net examples/basic-usage.ts"
},
"imports": {
"@std/assert": "jsr:@std/assert@^1.0.0"
},
"compilerOptions": {
"strict": true,
"lib": [
"deno.window",
"dom"
],
"noImplicitAny": true,
"noImplicitReturns": true,
"noUnusedLocals": false,
"noUnusedParameters": false
},
"fmt": {
"useTabs": false,
"lineWidth": 80,
"indentWidth": 2,
"semiColons": true,
"singleQuote": false,
"proseWrap": "preserve"
},
"lint": {
"rules": {
"tags": [
"recommended"
]
},
"exclude": [
"examples/"
]
},
"exclude": [
"./examples/*",
".github/*",
"README.md",
"LICENSE"
]
}