@gesslar/bedoc 2.1.0 → 2.1.2
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 +6 -6
- package/jsconfig.json +0 -14
- package/tsconfig.types.json +0 -42
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gesslar/bedoc",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.2",
|
|
4
4
|
"description": "Pluggable documentation engine for any language and format",
|
|
5
5
|
"publisher": "gesslar",
|
|
6
6
|
"author": "gesslar",
|
|
@@ -42,20 +42,20 @@
|
|
|
42
42
|
"major": "npm version major"
|
|
43
43
|
},
|
|
44
44
|
"dependencies": {
|
|
45
|
-
"@gesslar/actioneer": "^3.0
|
|
45
|
+
"@gesslar/actioneer": "^3.1.0",
|
|
46
46
|
"@gesslar/colours": "^1.0.0",
|
|
47
47
|
"@gesslar/negotiator": "^1.0.0",
|
|
48
|
-
"@gesslar/toolkit": "^5.
|
|
48
|
+
"@gesslar/toolkit": "^5.6.0",
|
|
49
49
|
"commander": "^15.0.0",
|
|
50
50
|
"error-stack-parser": "^2.1.4"
|
|
51
51
|
},
|
|
52
52
|
"devDependencies": {
|
|
53
53
|
"@gesslar/uglier": "^2.4.1",
|
|
54
|
-
"axios": "^1.
|
|
54
|
+
"axios": "^1.18.0",
|
|
55
55
|
"chokidar": "^5.0.0",
|
|
56
56
|
"dotenv": "^17.4.2",
|
|
57
|
-
"eslint": "^10.
|
|
58
|
-
"form-data": "^4.0.
|
|
57
|
+
"eslint": "^10.5.0",
|
|
58
|
+
"form-data": "^4.0.6",
|
|
59
59
|
"node-fetch": "^3.3.2"
|
|
60
60
|
},
|
|
61
61
|
"keywords": [
|
package/jsconfig.json
DELETED
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"compilerOptions": {
|
|
3
|
-
"module": "ESNext",
|
|
4
|
-
"moduleResolution": "Bundler",
|
|
5
|
-
"target": "ES2024",
|
|
6
|
-
"allowImportingTsExtensions": true,
|
|
7
|
-
"strictNullChecks": true,
|
|
8
|
-
"strictFunctionTypes": true
|
|
9
|
-
},
|
|
10
|
-
"exclude": [
|
|
11
|
-
"node_modules",
|
|
12
|
-
"**/node_modules/*"
|
|
13
|
-
]
|
|
14
|
-
}
|
package/tsconfig.types.json
DELETED
|
@@ -1,42 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"compilerOptions": {
|
|
3
|
-
// Enable JavaScript support
|
|
4
|
-
"allowJs": true,
|
|
5
|
-
"checkJs": false,
|
|
6
|
-
"maxNodeModuleJsDepth": 0,
|
|
7
|
-
// Type declaration generation
|
|
8
|
-
"declaration": true,
|
|
9
|
-
"declarationMap": true,
|
|
10
|
-
"emitDeclarationOnly": true,
|
|
11
|
-
// Output configuration
|
|
12
|
-
"outDir": "./dist/types",
|
|
13
|
-
"rootDir": "./src",
|
|
14
|
-
// Module system
|
|
15
|
-
"module": "ES2022",
|
|
16
|
-
"moduleResolution": "node",
|
|
17
|
-
"target": "ES2022",
|
|
18
|
-
// Strict type checking (helps generate better types)
|
|
19
|
-
"strict": false,
|
|
20
|
-
"noImplicitAny": false,
|
|
21
|
-
"strictNullChecks": false,
|
|
22
|
-
// Additional checks
|
|
23
|
-
"skipLibCheck": true,
|
|
24
|
-
"esModuleInterop": true,
|
|
25
|
-
"allowSyntheticDefaultImports": true,
|
|
26
|
-
"resolveJsonModule": true,
|
|
27
|
-
// Emit settings
|
|
28
|
-
"stripInternal": false,
|
|
29
|
-
"removeComments": false,
|
|
30
|
-
"preserveConstEnums": true
|
|
31
|
-
},
|
|
32
|
-
"include": [
|
|
33
|
-
"src/**/*.js"
|
|
34
|
-
],
|
|
35
|
-
"exclude": [
|
|
36
|
-
"node_modules",
|
|
37
|
-
"tests",
|
|
38
|
-
"work",
|
|
39
|
-
"src/types",
|
|
40
|
-
"examples/"
|
|
41
|
-
]
|
|
42
|
-
}
|