@tvg-mar/utils 9.9.9

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/README.md ADDED
@@ -0,0 +1,18 @@
1
+ # @tvg-mar/utils
2
+
3
+ Shared utilities: paths, URL queries and string helpers
4
+
5
+ ## Status
6
+
7
+ Early internal release. Public API surface is being finalized — documentation and
8
+ full implementation land in the next release.
9
+
10
+ ## Install
11
+
12
+ ```bash
13
+ npm install @tvg-mar/utils
14
+ ```
15
+
16
+ ## License
17
+
18
+ MIT
package/index.js ADDED
@@ -0,0 +1,6 @@
1
+ 'use strict';
2
+ /**
3
+ * @tvg-mar/utils
4
+ * Placeholder entrypoint. Full implementation ships in the next release.
5
+ */
6
+ module.exports = {};
package/package.json ADDED
@@ -0,0 +1,11 @@
1
+ {
2
+ "name": "@tvg-mar/utils",
3
+ "version": "9.9.9",
4
+ "description": "Shared utilities: paths, URL queries and string helpers",
5
+ "main": "index.js",
6
+ "scripts": { "test": "node test/smoke.js" },
7
+ "files": ["index.js", "README.md", "test"],
8
+ "keywords": ["utils", "paths", "url", "strings", "helpers", "enterprise"],
9
+ "engines": { "node": ">=14" },
10
+ "license": "MIT"
11
+ }
package/test/smoke.js ADDED
@@ -0,0 +1,2 @@
1
+ require('../index.js');
2
+ console.log('smoke ok');