@powerlines/plugin-typedoc 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
File without changes
package/package.json ADDED
@@ -0,0 +1,106 @@
1
+ {
2
+ "name": "@powerlines/plugin-typedoc",
3
+ "version": "0.1.0",
4
+ "type": "module",
5
+ "description": "A package containing a Powerlines plugin for running TypeDoc on the codebase.",
6
+ "repository": {
7
+ "type": "github",
8
+ "url": "https://github.com/storm-software/powerlines.git",
9
+ "directory": "packages/plugin-typedoc"
10
+ },
11
+ "homepage": "https://stormsoftware.com",
12
+ "bugs": {
13
+ "url": "https://stormsoftware.com/support",
14
+ "email": "support@stormsoftware.com"
15
+ },
16
+ "author": {
17
+ "name": "Storm Software",
18
+ "email": "contact@stormsoftware.com",
19
+ "url": "https://stormsoftware.com"
20
+ },
21
+ "maintainers": [
22
+ {
23
+ "name": "Storm Software",
24
+ "email": "contact@stormsoftware.com",
25
+ "url": "https://stormsoftware.com"
26
+ }
27
+ ],
28
+ "contributors": [
29
+ {
30
+ "name": "Storm Software",
31
+ "email": "contact@stormsoftware.com",
32
+ "url": "https://stormsoftware.com"
33
+ }
34
+ ],
35
+ "funding": {
36
+ "type": "github",
37
+ "url": "https://github.com/sponsors/storm-software"
38
+ },
39
+ "license": "Apache-2.0",
40
+ "private": false,
41
+ "exports": {
42
+ "./package.json": "./package.json",
43
+ ".": {
44
+ "import": { "types": "./dist/index.d.ts", "default": "./dist/index.js" },
45
+ "require": {
46
+ "types": "./dist/index.d.cts",
47
+ "default": "./dist/index.cjs"
48
+ },
49
+ "default": { "types": "./dist/index.d.ts", "default": "./dist/index.js" }
50
+ },
51
+ "./index": {
52
+ "import": { "types": "./dist/index.d.ts", "default": "./dist/index.js" },
53
+ "require": {
54
+ "types": "./dist/index.d.cts",
55
+ "default": "./dist/index.cjs"
56
+ },
57
+ "default": { "types": "./dist/index.d.ts", "default": "./dist/index.js" }
58
+ },
59
+ "./types": {
60
+ "import": {
61
+ "types": "./dist/types/index.d.ts",
62
+ "default": "./dist/types/index.js"
63
+ },
64
+ "require": {
65
+ "types": "./dist/types/index.d.cts",
66
+ "default": "./dist/types/index.cjs"
67
+ },
68
+ "default": {
69
+ "types": "./dist/types/index.d.ts",
70
+ "default": "./dist/types/index.js"
71
+ }
72
+ },
73
+ "./types/*": {
74
+ "import": {
75
+ "types": "./dist/types/*.d.ts",
76
+ "default": "./dist/types/*.js"
77
+ },
78
+ "require": {
79
+ "types": "./dist/types/*.d.cts",
80
+ "default": "./dist/types/*.cjs"
81
+ },
82
+ "default": {
83
+ "types": "./dist/types/*.d.ts",
84
+ "default": "./dist/types/*.js"
85
+ }
86
+ }
87
+ },
88
+ "files": ["dist/**/*"],
89
+ "keywords": ["powerlines", "storm-software", "powerlines-plugin"],
90
+ "dependencies": {
91
+ "@storm-software/config-tools": "^1.188.6",
92
+ "@stryke/path": "^0.15.5",
93
+ "@stryke/fs": "^0.31.4",
94
+ "powerlines": "^0.2.0",
95
+ "typedoc": "0.25.12",
96
+ "typedoc-plugin-markdown": "4.0.0-next.20"
97
+ },
98
+ "devDependencies": {
99
+ "@powerlines/nx": "^0.2.0",
100
+ "@storm-software/tsup": "^0.2.4",
101
+ "@types/node": "^22.18.11",
102
+ "tsup": "8.4.0"
103
+ },
104
+ "publishConfig": { "access": "public" },
105
+ "gitHead": "319be4880b93666a6dafe38d60278a8cad920f0b"
106
+ }