@embedder/embedder 1.0.7
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/LICENSE +36 -0
- package/bundle/embedder.js +600 -0
- package/bundle/gdb-debugger-python/gdb_bridge.py +392 -0
- package/bundle/gdb-debugger-python/requirements.txt +1 -0
- package/bundle/postinstall-for-users.js +497 -0
- package/bundle/prebuilt/darwin-arm64/node-pty.node +0 -0
- package/bundle/prebuilt/darwin-arm64/serialport.node +0 -0
- package/bundle/prebuilt/darwin-x64/node-pty.node +0 -0
- package/bundle/prebuilt/darwin-x64/serialport.node +0 -0
- package/bundle/prebuilt/js/LICENSE +21 -0
- package/bundle/prebuilt/js/README.md +16 -0
- package/bundle/prebuilt/js/dist/index.d.ts +180 -0
- package/bundle/prebuilt/js/dist/index.js +380 -0
- package/bundle/prebuilt/js/package.json +30 -0
- package/bundle/prebuilt/linux-x64/node-pty.node +0 -0
- package/bundle/prebuilt/linux-x64/serialport.node +0 -0
- package/bundle/prebuilt/win32-x64/node-pty.node +0 -0
- package/bundle/prebuilt/win32-x64/serialport.node +0 -0
- package/bundle/repomap-bridge.js +6 -0
- package/bundle/repomap-python/.repomap.tags.cache.v1/16/f1/46475231336389d911f729227da4.val +0 -0
- package/bundle/repomap-python/.repomap.tags.cache.v1/4b/ed/71b2bc3ff2b4ae3127312ffb93b6.val +0 -0
- package/bundle/repomap-python/.repomap.tags.cache.v1/9a/a5/4cd70a20713e3b8fb1e15ada7795.val +0 -0
- package/bundle/repomap-python/.repomap.tags.cache.v1/a2/bd/43da7881d5016e770db1c6facb21.val +0 -0
- package/bundle/repomap-python/.repomap.tags.cache.v1/a9/9a/8d9d8580960d3db4249ad5534c93.val +0 -0
- package/bundle/repomap-python/.repomap.tags.cache.v1/c9/b3/539c4fa477faa91028d0911cbd93.val +0 -0
- package/bundle/repomap-python/.repomap.tags.cache.v1/cache.db +0 -0
- package/bundle/repomap-python/.repomap.tags.cache.v1/d2/7f/23d90301a6beae01ee51643cbdec.val +0 -0
- package/bundle/repomap-python/.repomap.tags.cache.v1/d4/03/91f221322e309efe044a99fd3b12.val +0 -0
- package/bundle/repomap-python/__pycache__/importance.cpython-310.pyc +0 -0
- package/bundle/repomap-python/__pycache__/repomap_class.cpython-310.pyc +0 -0
- package/bundle/repomap-python/__pycache__/scm.cpython-310.pyc +0 -0
- package/bundle/repomap-python/__pycache__/utils.cpython-310.pyc +0 -0
- package/bundle/repomap-python/importance.py +58 -0
- package/bundle/repomap-python/queries/repomap_server.py +577 -0
- package/bundle/repomap-python/queries/tree-sitter-language-pack/README.md +9 -0
- package/bundle/repomap-python/queries/tree-sitter-language-pack/arduino-tags.scm +5 -0
- package/bundle/repomap-python/queries/tree-sitter-language-pack/c-tags.scm +9 -0
- package/bundle/repomap-python/queries/tree-sitter-language-pack/chatito-tags.scm +16 -0
- package/bundle/repomap-python/queries/tree-sitter-language-pack/commonlisp-tags.scm +122 -0
- package/bundle/repomap-python/queries/tree-sitter-language-pack/cpp-tags.scm +15 -0
- package/bundle/repomap-python/queries/tree-sitter-language-pack/csharp-tags.scm +26 -0
- package/bundle/repomap-python/queries/tree-sitter-language-pack/d-tags.scm +26 -0
- package/bundle/repomap-python/queries/tree-sitter-language-pack/dart-tags.scm +92 -0
- package/bundle/repomap-python/queries/tree-sitter-language-pack/elisp-tags.scm +5 -0
- package/bundle/repomap-python/queries/tree-sitter-language-pack/elixir-tags.scm +54 -0
- package/bundle/repomap-python/queries/tree-sitter-language-pack/elm-tags.scm +19 -0
- package/bundle/repomap-python/queries/tree-sitter-language-pack/gleam-tags.scm +41 -0
- package/bundle/repomap-python/queries/tree-sitter-language-pack/go-tags.scm +42 -0
- package/bundle/repomap-python/queries/tree-sitter-language-pack/java-tags.scm +20 -0
- package/bundle/repomap-python/queries/tree-sitter-language-pack/javascript-tags.scm +88 -0
- package/bundle/repomap-python/queries/tree-sitter-language-pack/lua-tags.scm +34 -0
- package/bundle/repomap-python/queries/tree-sitter-language-pack/ocaml-tags.scm +115 -0
- package/bundle/repomap-python/queries/tree-sitter-language-pack/ocaml_interface-tags.scm +98 -0
- package/bundle/repomap-python/queries/tree-sitter-language-pack/pony-tags.scm +39 -0
- package/bundle/repomap-python/queries/tree-sitter-language-pack/properties-tags.scm +5 -0
- package/bundle/repomap-python/queries/tree-sitter-language-pack/python-tags.scm +14 -0
- package/bundle/repomap-python/queries/tree-sitter-language-pack/r-tags.scm +21 -0
- package/bundle/repomap-python/queries/tree-sitter-language-pack/racket-tags.scm +12 -0
- package/bundle/repomap-python/queries/tree-sitter-language-pack/ruby-tags.scm +64 -0
- package/bundle/repomap-python/queries/tree-sitter-language-pack/rust-tags.scm +60 -0
- package/bundle/repomap-python/queries/tree-sitter-language-pack/solidity-tags.scm +43 -0
- package/bundle/repomap-python/queries/tree-sitter-language-pack/swift-tags.scm +51 -0
- package/bundle/repomap-python/queries/tree-sitter-language-pack/udev-tags.scm +20 -0
- package/bundle/repomap-python/queries/tree-sitter-languages/README.md +24 -0
- package/bundle/repomap-python/queries/tree-sitter-languages/c-tags.scm +9 -0
- package/bundle/repomap-python/queries/tree-sitter-languages/c_sharp-tags.scm +46 -0
- package/bundle/repomap-python/queries/tree-sitter-languages/cpp-tags.scm +15 -0
- package/bundle/repomap-python/queries/tree-sitter-languages/dart-tags.scm +91 -0
- package/bundle/repomap-python/queries/tree-sitter-languages/elisp-tags.scm +8 -0
- package/bundle/repomap-python/queries/tree-sitter-languages/elixir-tags.scm +54 -0
- package/bundle/repomap-python/queries/tree-sitter-languages/elm-tags.scm +19 -0
- package/bundle/repomap-python/queries/tree-sitter-languages/go-tags.scm +30 -0
- package/bundle/repomap-python/queries/tree-sitter-languages/hcl-tags.scm +77 -0
- package/bundle/repomap-python/queries/tree-sitter-languages/java-tags.scm +20 -0
- package/bundle/repomap-python/queries/tree-sitter-languages/javascript-tags.scm +88 -0
- package/bundle/repomap-python/queries/tree-sitter-languages/kotlin-tags.scm +27 -0
- package/bundle/repomap-python/queries/tree-sitter-languages/ocaml-tags.scm +115 -0
- package/bundle/repomap-python/queries/tree-sitter-languages/ocaml_interface-tags.scm +98 -0
- package/bundle/repomap-python/queries/tree-sitter-languages/php-tags.scm +26 -0
- package/bundle/repomap-python/queries/tree-sitter-languages/python-tags.scm +12 -0
- package/bundle/repomap-python/queries/tree-sitter-languages/ql-tags.scm +26 -0
- package/bundle/repomap-python/queries/tree-sitter-languages/ruby-tags.scm +64 -0
- package/bundle/repomap-python/queries/tree-sitter-languages/rust-tags.scm +60 -0
- package/bundle/repomap-python/queries/tree-sitter-languages/scala-tags.scm +65 -0
- package/bundle/repomap-python/queries/tree-sitter-languages/typescript-tags.scm +41 -0
- package/bundle/repomap-python/repomap.py +229 -0
- package/bundle/repomap-python/repomap_bridge.py +234 -0
- package/bundle/repomap-python/repomap_class.py +637 -0
- package/bundle/repomap-python/repomap_server.py +585 -0
- package/bundle/repomap-python/requirements.txt +7 -0
- package/bundle/repomap-python/scm.py +59 -0
- package/bundle/repomap-python/utils.py +58 -0
- package/bundle/sandbox-macos-permissive-closed.sb +26 -0
- package/bundle/sandbox-macos-permissive-open.sb +19 -0
- package/bundle/sandbox-macos-permissive-proxied.sb +31 -0
- package/bundle/sandbox-macos-restrictive-closed.sb +87 -0
- package/bundle/sandbox-macos-restrictive-open.sb +90 -0
- package/bundle/sandbox-macos-restrictive-proxied.sb +92 -0
- package/package.json +97 -0
- package/postinstall.js +42 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
PROPRIETARY SOFTWARE LICENSE
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2025 Embedder Technologies Inc. All rights reserved.
|
|
4
|
+
|
|
5
|
+
This software and associated documentation files (the "Software") are the proprietary and confidential information of Embedder Technologies Inc. ("Company"). The Software is licensed, not sold, to you.
|
|
6
|
+
|
|
7
|
+
GRANT OF LICENSE:
|
|
8
|
+
Subject to the terms and conditions of this license, Company grants you a limited, non-exclusive, non-transferable, revocable license to use the Software solely for your internal business purposes in accordance with the documentation provided by Company.
|
|
9
|
+
|
|
10
|
+
RESTRICTIONS:
|
|
11
|
+
You may not:
|
|
12
|
+
1. Copy, modify, adapt, translate, or create derivative works based on the Software
|
|
13
|
+
2. Reverse engineer, disassemble, decompile, or otherwise attempt to derive the source code of the Software
|
|
14
|
+
3. Distribute, sell, lease, sublicense, or otherwise transfer the Software to any third party
|
|
15
|
+
4. Remove or alter any proprietary notices, labels, or marks on the Software
|
|
16
|
+
5. Use the Software for any purpose other than as expressly permitted by this license
|
|
17
|
+
|
|
18
|
+
OWNERSHIP:
|
|
19
|
+
Company retains all right, title, and interest in and to the Software, including all intellectual property rights therein. This license does not grant you any ownership rights in the Software.
|
|
20
|
+
|
|
21
|
+
CONFIDENTIALITY:
|
|
22
|
+
The Software contains trade secrets and proprietary information of Company. You agree to maintain the confidentiality of the Software and not to disclose it to any third parties without Company's prior written consent.
|
|
23
|
+
|
|
24
|
+
WARRANTY DISCLAIMER:
|
|
25
|
+
THE SOFTWARE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. COMPANY DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND NON-INFRINGEMENT.
|
|
26
|
+
|
|
27
|
+
LIMITATION OF LIABILITY:
|
|
28
|
+
IN NO EVENT SHALL COMPANY BE LIABLE FOR ANY INDIRECT, INCIDENTAL, SPECIAL, CONSEQUENTIAL, OR PUNITIVE DAMAGES, INCLUDING BUT NOT LIMITED TO LOSS OF PROFITS, DATA, OR USE, ARISING OUT OF OR IN CONNECTION WITH THIS LICENSE OR THE USE OF THE SOFTWARE.
|
|
29
|
+
|
|
30
|
+
TERMINATION:
|
|
31
|
+
This license is effective until terminated. Company may terminate this license immediately without notice if you breach any term of this license. Upon termination, you must cease all use of the Software and destroy all copies in your possession.
|
|
32
|
+
|
|
33
|
+
GOVERNING LAW:
|
|
34
|
+
This license shall be governed by and construed in accordance with the laws of [Jurisdiction], without regard to its conflict of laws principles.
|
|
35
|
+
|
|
36
|
+
If you have any questions about this license, please contact: legal@embedder.dev
|