-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathdeno.json
More file actions
63 lines (63 loc) · 1.72 KB
/
Copy pathdeno.json
File metadata and controls
63 lines (63 loc) · 1.72 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
{
"name": "@pkgx/libpkgx",
"version": "0.24.0",
"license": "Apache-2.0",
"exports": {
".": "./mod.ts",
"./hooks/useConfig.ts": "./src/hooks/useConfig.ts",
"./hooks/usePantry.ts": "./src/hooks/usePantry.ts",
"./utils/error.ts": "./src/utils/error.ts",
"./utils/host.ts": "./src/utils/host.ts",
"./utils/read-lines.ts": "./src/utils/read-lines.ts",
"./utils/semver.ts": "./src/utils/semver.ts",
"./plumbing/hydrate.ts": "./src/plumbing/hydrate.ts"
},
"publish": {
"include": [
"LICENSE.txt",
"README.md",
"mod.ts",
"src/**/*.ts",
"vendor/**"
],
"exclude": [
"src/**/*.test.ts",
"src/hooks/useTestConfig.ts",
"fixtures",
"examples",
"scripts",
"dist",
".github"
]
},
"compilerOptions": {
"strict": true
},
"pkgx": "deno~2.0",
"tasks": {
"test": "deno test --parallel --unstable-fs --unstable-ffi --allow-all",
"typecheck": "deno check ./mod.ts",
"publish:dry": "deno publish --dry-run --allow-dirty --unstable-fs --unstable-ffi"
},
"lint": {
"include": ["src/", "mod.ts"],
"exclude": ["**/*.test.ts", "vendor/", "src/hooks/useTestConfig.ts"]
},
"test": {
"include": ["src/"],
"exclude": ["dist/"]
},
"imports": {
"@std/assert": "jsr:@std/assert@^1.0.6",
"@std/crypto": "jsr:@std/crypto@^1",
"@std/encoding": "jsr:@std/encoding@^1",
"@std/fs": "jsr:@std/fs@^1",
"@std/io": "jsr:@std/io@^0.225.0",
"@std/io/write-all": "jsr:@std/io@^0.225.0/write-all",
"@std/path": "jsr:@std/path@^1",
"@std/testing": "jsr:@std/testing@^1.0.3",
"@std/yaml": "jsr:@std/yaml@^1",
"is-what": "npm:is-what@4.1.15",
"outdent": "npm:outdent@0.8.0"
}
}