-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeno.jsonc
More file actions
48 lines (48 loc) · 1.26 KB
/
Copy pathdeno.jsonc
File metadata and controls
48 lines (48 loc) · 1.26 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
{
"lock": false,
"name": "@fartlabs/jsonx",
"version": "0.0.13",
"exports": {
"./jsx-runtime": "./mod.ts",
"./jsx-dev-runtime": "./mod.ts"
},
"workspace": [
"./examples"
],
"compilerOptions": {
"jsx": "react-jsx",
"jsxImportSource": "@fartlabs/jsonx"
},
"imports": {
"@cross/deepmerge": "jsr:@cross/deepmerge@^1.0.1",
"@std/assert": "jsr:@std/assert@^1.0.19",
"@std/encoding": "jsr:@std/encoding@^1.0.10",
"@std/fs": "jsr:@std/fs@^1.0.23",
"@std/path": "jsr:@std/path@^1.1.4",
"@std/yaml": "jsr:@std/yaml@^1.0.12"
},
"tasks": {
"test": "deno test -A",
"format": "deno fmt",
"lint": "deno lint",
"check": "deno check",
"precommit": {
"description": "Run checks and tests before committing",
"dependencies": [
"format",
"lint",
"check",
"test"
]
},
"generate": {
"description": "Generate code",
"dependencies": [
"generate:workflow:check",
"generate:workflow:publish"
]
},
"generate:workflow:check": "deno --allow-write .github/workflows/check.tsx .github/workflows/check.yaml",
"generate:workflow:publish": "deno --allow-write .github/workflows/publish.tsx .github/workflows/publish.yaml"
}
}