-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeno.jsonc
More file actions
147 lines (147 loc) · 4.08 KB
/
Copy pathdeno.jsonc
File metadata and controls
147 lines (147 loc) · 4.08 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
{
"name": "@vanaware/syntaxmesh",
"version": "0.0.2-mtvrt8od",
"exports": "./esbuild.ts",
"description": "Gerenciamento de Projetos com Linguagem Descritiva.",
"author": "Vanaware",
"license": "MIT",
"workspace": [
"./packages/core",
"./packages/parser",
"./packages/report",
"./packages/storage",
"./packages/worker-db",
"./packages/server",
"./packages/ui",
"./packages/utils",
"./packages/service-worker",
"./packages/language",
"./packages/richtext",
"./packages/markdown"
],
// ⚙️ Configurações Rigorosas do Compilador TypeScript (FASE 4)
"compilerOptions": {
"lib": ["dom", "dom.iterable", "dom.asynciterable", "esnext", "deno.ns", "deno.unstable"],
"jsx": "react-jsx",
"jsxImportSource": "preact",
"strict": true,
"noImplicitAny": true,
"noUncheckedIndexedAccess": true
},
// 📦 Gerenciamento de Dependências
"minimumDependencyAge": 60,
"imports": {
"@std/fs": "jsr:@std/fs@^1.0.24",
"@std/path": "jsr:@std/path@^1.1.6",
"@std/assert": "jsr:@std/assert@^1.0.19",
"@std/testing": "jsr:@std/testing@^1.0.20",
"@std/collections": "jsr:@std/collections@^1.3.0",
"esbuild": "catalog:",
"wrangler": "catalog:",
"@deno/esbuild-plugin": "jsr:@deno/esbuild-plugin@^1.2.1"
},
"catalog": {
"wrangler": "^4.131.1",
"esbuild": "^0.28.2"
},
"allowScripts": ["npm:esbuild@0.28.1", "npm:esbuild@0.28.2", "npm:workerd"],
// 🛠️ Scripts de Automação
"tasks": {
"test": "deno test -P",
"lint": "deno lint",
"fmt": "deno fmt",
"check": "deno check build.ts esbuild.ts export.ts tests/**/*test.ts packages/**/tests/**/*test.ts packages/**/src/**/*.{ts,tsx}",
"fmt-check": "deno fmt --check",
"lint-fix": "deno lint --fix",
"check-all": "deno task check && deno task lint && deno task fmt --check && deno task test",
"tests": "deno task check && deno task test",
"dev": "deno task --cwd packages/server dev",
"start": "deno task --cwd packages/server start",
"export": "deno run --allow-read --allow-write ./export.ts",
"build": "deno run -A ./esbuild.ts",
"build:deno": "deno run --unstable-bundle -A ./build.ts",
"taskjuggler": "tj3 --no-color "
},
"nodeModulesDir": "auto",
"vendor": true,
"lint": {
"rules": {
"tags": ["recommended"],
"include": ["ban-untagged-todo"],
"exclude": ["no-unused-vars"]
},
"include": [
"build.ts",
"esbuild.ts",
"export.ts",
"examples/**/*.{ts,tsx}",
"packages/**/src/**/*.{ts,tsx}",
"tests/**/*test.ts",
"packages/**/tests/**/*test.ts"
]
},
"test": {
"permissions": {
"read": true,
"write": true,
"net": true,
"env": true,
"sys": true,
"run": true,
"ffi": true,
"import": true
},
"include": [
"tests/**/*test.ts",
"packages/**/tests/**/*test.ts"
],
"exclude": [
"packages/server/build/",
"packages/worker-db/build/",
"build.ts",
"esbuild.ts",
"export.ts",
"examples/**/*.{ts,tsx}",
"packages/**/src/**/*.{ts,tsx}"
]
},
"fmt": {
"useTabs": false,
"lineWidth": 80,
"indentWidth": 2,
"semiColons": true,
"singleQuote": false,
"proseWrap": "preserve",
"trailingCommas": "always",
"json.trailingCommas": "never",
"operatorPosition": "maintain",
"jsx.bracketPosition": "sameLine",
"jsx.forceNewLinesSurroundingContent": true,
"jsx.multiLineParens": "always",
"newLineKind": "lf",
"include": [
"build.ts",
"esbuild.ts",
"export.ts",
"examples/**/*.{ts,tsx}",
"packages/**/src/**/*.{ts,tsx}",
"tests/**/*test.ts",
"packages/**/tests/**/*test.ts"
],
"exclude": [
"packages/server/build/",
"packages/worker-db/build/"
]
},
"unstable": ["bundle"],
"exclude": [
".qwen/",
".vscode/",
"packages/server/build/",
"packages/worker-db/build/",
"vendor",
"node_modules",
"snapshots",
"docs"
]
}