-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
115 lines (115 loc) · 3.72 KB
/
package.json
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "@typhonjs-build-test/esm-d-ts",
"description": "Generates bundled Typescript declaration files from ESM source w/ JSDoc.",
"version": "0.2.2",
"author": "Michael Leahy <[email protected]> (https://github.com/typhonrt)",
"type": "module",
"bin": "./src/cli/index.js",
"imports": {
"#util": "./src/util/index.js"
},
"exports": {
".": {
"types": "./src/generator/index.d.ts",
"import": "./src/generator/index.js"
},
"./postprocess": {
"types": "./src/postprocess/index.d.ts",
"import": "./src/postprocess/index.js"
},
"./transformer": {
"types": "./src/transformer/index.d.ts",
"import": "./src/transformer/index.js"
},
"./util": {
"types": "./src/util/index.d.ts",
"import": "./src/util/index.js"
},
"./package.json": "./package.json"
},
"contributors": [
"Michael Leahy <[email protected]> (https://github.com/typhonrt)"
],
"dependencies": {
"@rollup/plugin-alias": "^5.1.0",
"@types/cytoscape": "^3.19.15",
"@typhonjs-build-test/rollup-plugin-pkg-imports": "^0.3.0",
"@typhonjs-utils/file-util": "^0.1.0",
"@typhonjs-utils/logger-color": "^0.1.0",
"@typhonjs-utils/object": "^0.1.0",
"@typhonjs-utils/package-json": "^0.7.0",
"cytoscape": "^3.27.0",
"comment-parser": "^1.4.1",
"es-module-lexer": "^1.4.1",
"fs-extra": "^11.2.0",
"import-meta-resolve": "^4.0.0",
"resolve.exports": "^2.0.2",
"rollup-plugin-dts": "^6.1.0",
"sade": "^1.8.1",
"ts-morph": "^20.0.0",
"type-fest": "^4.9.0",
"upath": "^2.0.1"
},
"devDependencies": {
"@typhonjs-config/eslint-config" : "^0.6.0",
"@typhonjs-typedoc/typedoc-pkg": "^0.0.2",
"@types/node": "^20.9.0",
"eslint": "^8.53.0"
},
"peerDependencies": {
"rollup": "3.3 - 4",
"typescript": ">=5.1.0"
},
"engines": {
"node": ">=18"
},
"files": [
"/src"
],
"homepage": "https://github.com/typhonjs-node-build-test/esm-d-ts#readme",
"keywords": [
"typhonjs",
"build",
"esm",
"d.ts",
"dts",
"declarations",
"generator",
"jsdoc",
"typescript"
],
"typedocOptions": {
"dmtLinksService": {
"Discord": "https://typhonjs.io/discord/",
"GitHub": "https://github.com/typhonjs-node-build-test/esm-d-ts",
"NPM": "https://www.npmjs.com/package/@typhonjs-build-test/esm-d-ts"
},
"externalSymbolLinkMappings": {
"@typhonjs-build-test/rollup-plugin-pkg-imports": {
"ImportsPluginOptions": "https://typhonjs-node-build-test.github.io/rollup-plugin-pkg-imports/types/ImportsPluginOptions.html",
"ImportsResolvePluginOptions": "https://typhonjs-node-build-test.github.io/rollup-plugin-pkg-imports/types/ImportsResolvePluginOptions.html"
},
"@typhonjs-utils/logger-color": {
"ColorLogger": "https://typhonjs-node-utils.github.io/logger-color/classes/_typhonjs_utils_logger_color.ColorLogger.html"
},
"@types/cytoscape": {
"cytoscape.Core": "https://js.cytoscape.org/#core",
"cytoscape.ElementDefinition": "https://js.cytoscape.org/#notation/elements-json",
"cytoscape.SearchVisitFunction": "https://js.cytoscape.org/#eles.depthFirstSearch"
},
"resolve.exports": {
"Options": "https://www.npmjs.com/package/resolve.exports#options"
}
}
},
"license": "MPL-2.0",
"repository": "github:typhonjs-node-build-test/esm-d-ts",
"bugs": "https://github.com/typhonjs-node-build-test/esm-d-ts/issues",
"apidocs": "https://typhonjs-node-build-test.github.io/esm-d-ts/",
"scripts": {
"eslint": "eslint .",
"docs": "typedoc-pkg --api-link esm --link-checker",
"types": "node ./src/cli/index.js gen -c",
"post-test": "node test/postprocess/test.js"
}
}