codesentry-semgrep-linux-x64 0.1.1

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 ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Ivan Reis
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,24 @@
1
+ # codesentry-semgrep-linux-x64
2
+
3
+ Pacote interno do [CodeSentry](https://github.com/Ivan-ReisDev/code-sentry).
4
+ Contém um runtime Python portátil com o Semgrep CE instalado, usado
5
+ automaticamente como dependência opcional em máquinas Linux x64 — é assim
6
+ que o `codesentry` roda o Semgrep sem exigir Python, Docker ou instalação
7
+ manual do Semgrep pelo usuário.
8
+
9
+ **Não é para instalação direta.** Se você quer usar o CodeSentry, instale o
10
+ pacote principal:
11
+
12
+ ```bash
13
+ npm install -g codesentry
14
+ ```
15
+
16
+ O npm resolve este pacote automaticamente na sua plataforma. Veja o
17
+ [README do CodeSentry](https://github.com/Ivan-ReisDev/code-sentry#readme)
18
+ para o que a ferramenta faz e como usar.
19
+
20
+ ## Licença
21
+
22
+ Este pacote distribui Semgrep CE e CPython — veja
23
+ [THIRD_PARTY_NOTICES.md](./THIRD_PARTY_NOTICES.md). O código deste pacote é
24
+ [MIT](./LICENSE).
@@ -0,0 +1,11 @@
1
+ # Componentes de terceiros
2
+
3
+ Este pacote de distribuição contém, no artefato de release, o Semgrep
4
+ Community Edition e uma distribuição portátil do CPython.
5
+
6
+ - Semgrep CE: licença LGPL-2.1, https://github.com/semgrep/semgrep/blob/develop/LICENSE
7
+ - CPython: Python Software Foundation License, https://docs.python.org/3/license.html
8
+
9
+ Antes de publicar, o workflow de release deve copiar os textos integrais das
10
+ licenças das versões efetivamente empacotadas para este artefato e registrar
11
+ as versões e checksums em `runtime.lock.json`.
package/package.json ADDED
@@ -0,0 +1,22 @@
1
+ {
2
+ "name": "codesentry-semgrep-linux-x64",
3
+ "version": "0.1.1",
4
+ "license": "MIT",
5
+ "description": "Runtime Semgrep CE embutido do CodeSentry para Linux x64",
6
+ "os": [
7
+ "linux"
8
+ ],
9
+ "cpu": [
10
+ "x64"
11
+ ],
12
+ "files": [
13
+ "runtime",
14
+ "runtime.json",
15
+ "runtime.lock.json",
16
+ "THIRD_PARTY_NOTICES.md",
17
+ "LICENSE"
18
+ ],
19
+ "exports": {
20
+ "./runtime.json": "./runtime.json"
21
+ }
22
+ }
File without changes
package/runtime.json ADDED
@@ -0,0 +1,3 @@
1
+ {
2
+ "semgrep": "runtime/python/bin/semgrep"
3
+ }
@@ -0,0 +1,5 @@
1
+ {
2
+ "semgrep": "1.145.0",
3
+ "python": "3.12",
4
+ "runtimeSha256": "9a9f5dbb9a05fcdb3e1b66a350eb44d6173c38fd85a041e43ce48bac11199b8b"
5
+ }