@pantoken/typedoc-plugin-demo 0.1.0 → 0.1.1
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.
- package/package.json +24 -13
package/package.json
CHANGED
|
@@ -1,33 +1,44 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pantoken/typedoc-plugin-demo",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "TypeDoc plugin: turn a @demo <provider>:<ref> block tag into an embeddable demo fence your docs render as an iframe.",
|
|
5
|
+
"homepage": "https://pantoken.iywahl.com",
|
|
6
|
+
"bugs": "https://github.com/thedannywahl/pantoken/issues",
|
|
5
7
|
"license": "MIT",
|
|
8
|
+
"repository": {
|
|
9
|
+
"type": "git",
|
|
10
|
+
"url": "git+https://github.com/thedannywahl/pantoken.git",
|
|
11
|
+
"directory": "plugins/typedoc/demo"
|
|
12
|
+
},
|
|
6
13
|
"files": [
|
|
7
14
|
"dist"
|
|
8
15
|
],
|
|
9
16
|
"type": "module",
|
|
17
|
+
"sideEffects": false,
|
|
10
18
|
"exports": {
|
|
11
19
|
".": "./dist/index.mjs",
|
|
12
20
|
"./package.json": "./package.json"
|
|
13
21
|
},
|
|
14
22
|
"publishConfig": {
|
|
15
|
-
"access": "public"
|
|
23
|
+
"access": "public",
|
|
24
|
+
"provenance": true
|
|
25
|
+
},
|
|
26
|
+
"scripts": {
|
|
27
|
+
"dev": "vp pack --watch",
|
|
28
|
+
"test": "vp test",
|
|
29
|
+
"check": "vp check"
|
|
16
30
|
},
|
|
17
31
|
"devDependencies": {
|
|
18
|
-
"@types/node": "
|
|
19
|
-
"typedoc": "
|
|
20
|
-
"typescript": "
|
|
21
|
-
"vite": "
|
|
22
|
-
"vite-plus": "
|
|
32
|
+
"@types/node": "catalog:",
|
|
33
|
+
"typedoc": "catalog:",
|
|
34
|
+
"typescript": "catalog:",
|
|
35
|
+
"vite": "catalog:",
|
|
36
|
+
"vite-plus": "catalog:"
|
|
23
37
|
},
|
|
24
38
|
"peerDependencies": {
|
|
25
39
|
"typedoc": ">=0.28"
|
|
26
40
|
},
|
|
27
|
-
"
|
|
28
|
-
"
|
|
29
|
-
"dev": "vp pack --watch",
|
|
30
|
-
"test": "vp test",
|
|
31
|
-
"check": "vp check"
|
|
41
|
+
"engines": {
|
|
42
|
+
"node": ">=22.18.0"
|
|
32
43
|
}
|
|
33
|
-
}
|
|
44
|
+
}
|