@savvy-web/rslib-builder 0.2.2 → 0.4.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.
Files changed (4) hide show
  1. package/README.md +70 -18
  2. package/index.d.ts +1013 -392
  3. package/index.js +491 -209
  4. package/package.json +14 -5
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@savvy-web/rslib-builder",
3
- "version": "0.2.2",
3
+ "version": "0.4.0",
4
4
  "private": false,
5
5
  "description": "RSlib-based build system for Node.js libraries with automatic package.json transformation, TypeScript declaration bundling, and multi-target support",
6
6
  "homepage": "https://github.com/savvy-web/rslib-builder",
@@ -15,10 +15,6 @@
15
15
  "url": "https://savvyweb.systems"
16
16
  },
17
17
  "type": "module",
18
- "imports": {
19
- "#utils/*": "./src/rslib/plugins/utils/*",
20
- "#types/*": "./src/types/*"
21
- },
22
18
  "exports": {
23
19
  ".": {
24
20
  "types": "./index.d.ts",
@@ -31,6 +27,7 @@
31
27
  "@microsoft/tsdoc": "^0.16.0",
32
28
  "@microsoft/tsdoc-config": "^0.18.0",
33
29
  "@pnpm/exportable-manifest": "^1000.3.1",
30
+ "deep-equal": "^2.2.3",
34
31
  "glob": "^13.0.0",
35
32
  "picocolors": "^1.1.1",
36
33
  "sort-package-json": "^3.6.0",
@@ -42,7 +39,10 @@
42
39
  "@microsoft/api-extractor": "^7.55.2",
43
40
  "@rslib/core": "^0.19.2",
44
41
  "@types/node": "^25.0.9",
42
+ "@typescript-eslint/parser": "^8.0.0",
45
43
  "@typescript/native-preview": "^7.0.0-dev.20260120.1",
44
+ "eslint": "^9.0.0",
45
+ "eslint-plugin-tsdoc": "^0.5.0",
46
46
  "typescript": "^5.9.3"
47
47
  },
48
48
  "peerDependenciesMeta": {
@@ -52,9 +52,18 @@
52
52
  "@rslib/core": {
53
53
  "optional": false
54
54
  },
55
+ "@typescript-eslint/parser": {
56
+ "optional": true
57
+ },
55
58
  "@typescript/native-preview": {
56
59
  "optional": false
57
60
  },
61
+ "eslint": {
62
+ "optional": true
63
+ },
64
+ "eslint-plugin-tsdoc": {
65
+ "optional": true
66
+ },
58
67
  "typescript": {
59
68
  "optional": false
60
69
  }