-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjsr.jsonc
52 lines (52 loc) · 1.49 KB
/
jsr.jsonc
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
{
"$schema": "https://deno.land/x/deno/cli/schemas/config-file.v1.json",
"name": "@hugoalh/github-actions-core",
"version": "0.5.0",
"exports": {
"./command/file": "./command/file.ts",
"./command/stdout": "./command/stdout.ts",
"./env": "./environment_variable.ts",
"./environment-variable": "./environment_variable.ts",
"./log": "./log.ts",
"./parameter": "./parameter.ts",
"./problem-matcher": "./problem_matcher.ts",
"./runner": "./runner.ts",
"./summary": "./summary.ts",
"./utility": "./utility.ts",
".": "./mod.ts"
},
"imports": {
"https://raw.githubusercontent.com/hugoalh/env-es/v0.2.0/env.ts": "jsr:@hugoalh/env@^0.2.0/env",
"https://raw.githubusercontent.com/hugoalh/env-es/v0.2.0/path.ts": "jsr:@hugoalh/env@^0.2.0/path",
"https://raw.githubusercontent.com/hugoalh/eol-es/v0.2.0/eol.ts": "jsr:@hugoalh/eol@^0.2.0/eol",
"https://raw.githubusercontent.com/hugoalh/is-json-es/v1.0.4/mod.ts": "jsr:@hugoalh/is-json@^1.0.4",
"https://raw.githubusercontent.com/hugoalh/is-string-singleline-es/v1.0.4/mod.ts": "jsr:@hugoalh/is-string-singleline@^1.0.4"
},
"publish": {
"exclude": [
"**/*_bench.ts",
"**/*_bench.tsx",
"**/*_test.ts",
"**/*_test.tsx",
"**/*.bench.ts",
"**/*.bench.tsx",
"**/*.test.ts",
"**/*.test.tsx",
"**/bench.ts",
"**/bench.tsx",
"**/test.ts",
"**/test.tsx",
"npm/**",
".dnt.ts"
],
"include": [
"**/*.json",
"**/*.ts",
"**/*.tsx",
"**/*.wasm",
"jsr.jsonc",
"LICENSE*.md",
"README*.md"
]
}
}