-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeno.json
More file actions
77 lines (77 loc) · 3.06 KB
/
deno.json
File metadata and controls
77 lines (77 loc) · 3.06 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
77
{
"name": "@pumpn/eslint-config",
"version": "17.1.1",
"exports": "./config.js",
"license": "MIT",
"tasks": {
"lint": "deno x eslint",
"publish": "deno task lint && VERSION=$(cat deno.json | jq -r .version) && git tag -a \"v$VERSION\" -m \"\" && git push origin \"v$VERSION\" && deno publish --no-check && npm publish",
"update-import-map": "deno run -A ./scripts/update-import-map.js",
"update-package-json": "deno run -A ./scripts/update-package-json.js",
"update-tsconfig": "deno run -A ./scripts/update-tsconfig.js"
},
"compilerOptions": {
"allowUnreachableCode": false,
"allowUnusedLabels": false,
"checkJs": true,
"exactOptionalPropertyTypes": true,
"jsx": "react-jsx",
"jsxImportSource": "preact",
"noErrorTruncation": true,
"noFallthroughCasesInSwitch": false,
"noImplicitAny": true,
"noImplicitOverride": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noPropertyAccessFromIndexSignature": false,
"noUncheckedIndexedAccess": false,
"noUnusedLocals": false,
"noUnusedParameters": false,
"strict": true,
"lib": [
"dom",
"dom.iterable",
"dom.asynciterable",
"deno.ns",
"deno.unstable",
"esnext"
]
},
"imports": {
"@eslint-community/eslint-plugin-eslint-comments": "npm:@eslint-community/eslint-plugin-eslint-comments@^4.7.1",
"@std/path": "jsr:@std/path@^1.1.4",
"@stylistic/eslint-plugin": "npm:@stylistic/eslint-plugin@^5.10.0",
"@typescript-eslint/parser": "npm:@typescript-eslint/parser@^8.57.1",
"eslint": "npm:eslint@^10.0.3",
"eslint-import-resolver-typescript": "npm:eslint-import-resolver-typescript@^4.4.4",
"eslint-plugin-command": "npm:eslint-plugin-command@^3.5.2",
"eslint-plugin-depend": "npm:eslint-plugin-depend@^1.5.0",
"eslint-plugin-import-x": "npm:eslint-plugin-import-x@^4.16.2",
"eslint-plugin-jsdoc": "npm:eslint-plugin-jsdoc@^62.8.0",
"eslint-plugin-no-secrets": "npm:eslint-plugin-no-secrets@^2.3.3",
"eslint-plugin-perfectionist": "npm:eslint-plugin-perfectionist@^5.7.0",
"eslint-plugin-promise": "npm:eslint-plugin-promise@^7.2.1",
"eslint-plugin-react-dom": "npm:eslint-plugin-react-dom@^3.0.0",
"eslint-plugin-react-naming-convention": "npm:eslint-plugin-react-naming-convention@^3.0.0",
"eslint-plugin-react-rsc": "npm:eslint-plugin-react-rsc@^3.0.0",
"eslint-plugin-react-web-api": "npm:eslint-plugin-react-web-api@^3.0.0",
"eslint-plugin-react-x": "npm:eslint-plugin-react-x@^3.0.0",
"eslint-plugin-redos": "npm:eslint-plugin-redos@^4.5.0",
"eslint-plugin-regexp": "npm:eslint-plugin-regexp@^3.1.0",
"eslint-plugin-security": "npm:eslint-plugin-security@^4.0.0",
"eslint-plugin-sonarjs": "npm:eslint-plugin-sonarjs@^4.0.2",
"eslint-plugin-tailwindcss": "npm:eslint-plugin-tailwindcss@^4.0.0-beta.0",
"eslint-plugin-unicorn": "npm:eslint-plugin-unicorn@^63.0.0",
"globals": "npm:globals@^17.4.0",
"preact": "https://esm.sh/*preact@10.19.3?dev",
"preact/jsx-runtime": "https://esm.sh/*preact@10.19.3/jsx-runtime?dev"
},
"exclude": [
"**/_fresh/*",
"./documentation"
],
"nodeModulesDir": "auto",
"allowScripts": [
"npm:unrs-resolver@1.11.1"
]
}