-
Notifications
You must be signed in to change notification settings - Fork 198
Expand file tree
/
Copy pathdeno.jsonc
More file actions
72 lines (72 loc) · 3.25 KB
/
deno.jsonc
File metadata and controls
72 lines (72 loc) · 3.25 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
{
"tasks": {
"bench": "deno run -A tasks.ts bench", // Benchmarks
"build": "deno run -A tasks.ts build", // Build Project
"clean": "deno run -A tasks.ts clean", // Clean Build Targets
"fast": "deno run -A tasks.ts fast", // Interactive Tests
"format": "deno run -A tasks.ts format", // Formats Code
"lint": "deno run -A tasks.ts lint", // Lints Code
"local": "deno run -A tasks.ts local", // Build Local Project
"metrics": "deno run -A tasks.ts metrics", // Compression Metrics
"native": "deno run -A tasks.ts native", // Build Project With TypeScript Native
"publish": "deno run -A tasks.ts publish", // Publish Package
"report": "deno run -A tasks.ts report", // Test Converage
"range": "deno run -A tasks.ts range", // TypeScript Compiler Ranges
"spec": "deno run -A tasks.ts spec", // Refresh JSON Schema Spec
"start": "deno run -A tasks.ts start", // Run Example
"syntax": "deno run -A tasks.ts syntax", // Build Parsers
"test": "deno run -A tasks.ts test", // Test Project
"turing": "deno run -A tasks.ts turing", // Turing Complete Test
"website": "deno run -A tasks.ts website" // Website Doc Server
},
"imports": {
// --------------------------------------------------------------
// Build
// --------------------------------------------------------------
"tasksmith": "https://raw.githubusercontent.com/sinclairzx81/tasksmith/0.9.9/src/index.ts",
"parsebox": "https://raw.githubusercontent.com/sinclairzx81/parsebox/0.11.3/src/index.ts",
// --------------------------------------------------------------
// Test
// --------------------------------------------------------------
"test": "./test/common/index.ts",
// --------------------------------------------------------------
// Docs
// --------------------------------------------------------------
"react-three/fiber" : "npm:@react-three/fiber@9.3.0",
"react-router-dom": "npm:react-router-dom@7.8.2",
"react-dom" : "npm:react-dom@19.1.1",
"react" : "npm:react@19.1.1",
"marked": "npm:marked@16.2.1",
"prismjs": "npm:prismjs@1.30.0",
"three": "npm:three@0.180.0",
// --------------------------------------------------------------
// Package Entry
// --------------------------------------------------------------
"typebox/compile": "./src/compile/index.ts",
"typebox/error": "./src/error/index.ts",
"typebox/format": "./src/format/index.ts",
"typebox/guard": "./src/guard/index.ts",
"typebox/schema": "./src/schema/index.ts",
"typebox/system": "./src/system/index.ts",
"typebox/value": "./src/value/index.ts",
"typebox/type": "./src/type/index.ts",
"typebox": "./src/index.ts"
},
"fmt": {
"semiColons": false,
"singleQuote": true,
"trailingCommas": "never",
"lineWidth": 240
},
"exclude": [
"tasks"
],
"compilerOptions": {
"strict": true,
"verbatimModuleSyntax": true,
"jsx": "react-jsx",
"jsxImportSource": "npm:react@19.1.1",
"types": ["npm:@types/react", "npm:@types/react-dom", "npm:@types/three"],
"lib": ["deno.ns", "dom"]
}
}