-
Notifications
You must be signed in to change notification settings - Fork 0
/
.dnt.ts
44 lines (44 loc) · 944 Bytes
/
.dnt.ts
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
import {
getMetadataFromConfig,
invokeDenoNodeJSTransformer
} from "DNT";
const configJSR = await getMetadataFromConfig("jsr.jsonc");
await invokeDenoNodeJSTransformer({
assetsCopy: [
"LICENSE.md",
"README.md"
],
entrypoints: configJSR.getExports(),
generateDeclarationMap: true,
metadata: {
name: configJSR.getName(),
version: configJSR.getVersion(),
description: "A module to iterate between range.",
keywords: [
"range",
"iterate",
"iterator"
],
homepage: "https://github.com/hugoalh/range-iterator-es#readme",
bugs: {
url: "https://github.com/hugoalh/range-iterator-es/issues"
},
license: "MIT",
author: "hugoalh",
repository: {
type: "git",
url: "git+https://github.com/hugoalh/range-iterator-es.git"
},
scripts: {
},
engines: {
node: ">=16.13.0"
},
private: false,
publishConfig: {
access: "public"
}
},
outputDirectory: "npm",
outputDirectoryPreEmpty: true
});