@lhremote/core 0.0.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.
package/README.md ADDED
@@ -0,0 +1,13 @@
1
+ # @lhremote/core
2
+
3
+ Core library for [lhremote](https://github.com/alexey-pelykh/lhremote) — LinkedHelper automation toolkit.
4
+
5
+ ## Installation
6
+
7
+ ```bash
8
+ npm install @lhremote/core
9
+ ```
10
+
11
+ ## License
12
+
13
+ [AGPL-3.0-only](https://github.com/alexey-pelykh/lhremote/blob/main/LICENSE)
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC"}
package/dist/index.js ADDED
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC"}
package/package.json ADDED
@@ -0,0 +1,37 @@
1
+ {
2
+ "name": "@lhremote/core",
3
+ "version": "0.0.0",
4
+ "description": "Core library for LinkedHelper automation",
5
+ "type": "module",
6
+ "engines": {
7
+ "node": ">=22"
8
+ },
9
+ "license": "AGPL-3.0-only",
10
+ "author": "Alexey Pelykh (https://github.com/alexey-pelykh)",
11
+ "homepage": "https://github.com/alexey-pelykh/lhremote/tree/main/packages/core",
12
+ "bugs": "https://github.com/alexey-pelykh/lhremote/issues",
13
+ "repository": {
14
+ "type": "git",
15
+ "url": "https://github.com/alexey-pelykh/lhremote.git",
16
+ "directory": "packages/core"
17
+ },
18
+ "exports": {
19
+ ".": {
20
+ "types": "./dist/index.d.ts",
21
+ "import": "./dist/index.js"
22
+ }
23
+ },
24
+ "files": [
25
+ "dist"
26
+ ],
27
+ "scripts": {
28
+ "build": "tsc",
29
+ "test": "echo 'No tests configured'",
30
+ "lint": "echo 'No linter configured'",
31
+ "dev": "tsc --watch"
32
+ },
33
+ "devDependencies": {
34
+ "@types/node": "catalog:",
35
+ "typescript": "catalog:"
36
+ }
37
+ }