@lateos/npm-scan 0.11.3 → 0.11.4
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.de.md +2 -3
- package/README.fr.md +2 -3
- package/README.ja.md +2 -3
- package/README.md +2 -3
- package/README.zh.md +2 -3
- package/cli/cli.js +1 -1
- package/package.json +1 -1
package/README.de.md
CHANGED
|
@@ -306,10 +306,9 @@ npm-scan scan target --policy .npm-scan.yml
|
|
|
306
306
|
|
|
307
307
|
### Premium-Lizenzierung
|
|
308
308
|
|
|
309
|
-
|
|
310
|
-
# Einen Entwicklerschlüssel generieren
|
|
311
|
-
node -e "console.log(require('@lateos/npm-scan/backend/license').generateKey('premium'))"
|
|
309
|
+
Kontaktieren Sie leo@lateos.ai, um einen Premium/Enterprise-Lizenzschlüssel zu erhalten.
|
|
312
310
|
|
|
311
|
+
```bash
|
|
313
312
|
# Verwenden
|
|
314
313
|
npm-scan scan target --license-key <key>
|
|
315
314
|
npm-scan report --pdf --license-key <key>
|
package/README.fr.md
CHANGED
|
@@ -306,10 +306,9 @@ npm-scan scan target --policy .npm-scan.yml
|
|
|
306
306
|
|
|
307
307
|
### Licence premium
|
|
308
308
|
|
|
309
|
-
|
|
310
|
-
# Générer une clé de développement
|
|
311
|
-
node -e "console.log(require('@lateos/npm-scan/backend/license').generateKey('premium'))"
|
|
309
|
+
Contactez leo@lateos.ai pour obtenir une clé de licence premium/enterprise.
|
|
312
310
|
|
|
311
|
+
```bash
|
|
313
312
|
# L'utiliser
|
|
314
313
|
npm-scan scan target --license-key <key>
|
|
315
314
|
npm-scan report --pdf --license-key <key>
|
package/README.ja.md
CHANGED
|
@@ -302,10 +302,9 @@ npm-scan scan target --policy .npm-scan.yml
|
|
|
302
302
|
|
|
303
303
|
### プレミアムライセンス
|
|
304
304
|
|
|
305
|
-
|
|
306
|
-
# 開発用キーを生成
|
|
307
|
-
node -e "console.log(require('@lateos/npm-scan/backend/license').generateKey('premium'))"
|
|
305
|
+
leo@lateos.ai までお問い合わせいただき、高级版/エンタープライズ版ライセンスキーを取得してください。
|
|
308
306
|
|
|
307
|
+
```bash
|
|
309
308
|
# それを使用
|
|
310
309
|
npm-scan scan target --license-key <key>
|
|
311
310
|
npm-scan report --pdf --license-key <key>
|
package/README.md
CHANGED
|
@@ -343,10 +343,9 @@ npm-scan scan target --policy .npm-scan.yml
|
|
|
343
343
|
|
|
344
344
|
### Premium licensing
|
|
345
345
|
|
|
346
|
-
|
|
347
|
-
# Generate a development key
|
|
348
|
-
node -e "console.log(require('@lateos/npm-scan/backend/license').generateKey('premium'))"
|
|
346
|
+
Contact leo@lateos.ai for a premium/enterprise license key.
|
|
349
347
|
|
|
348
|
+
```bash
|
|
350
349
|
# Use it
|
|
351
350
|
npm-scan scan target --license-key <key>
|
|
352
351
|
npm-scan report --pdf --license-key <key>
|
package/README.zh.md
CHANGED
|
@@ -306,10 +306,9 @@ npm-scan scan target --policy .npm-scan.yml
|
|
|
306
306
|
|
|
307
307
|
### 高级版许可
|
|
308
308
|
|
|
309
|
-
|
|
310
|
-
# 生成开发密钥
|
|
311
|
-
node -e "console.log(require('@lateos/npm-scan/backend/license').generateKey('premium'))"
|
|
309
|
+
请联系 leo@lateos.ai 获取高级版/企业版许可密钥。
|
|
312
310
|
|
|
311
|
+
```bash
|
|
313
312
|
# 使用它
|
|
314
313
|
npm-scan scan target --license-key <key>
|
|
315
314
|
npm-scan report --pdf --license-key <key>
|
package/cli/cli.js
CHANGED
|
@@ -7,7 +7,7 @@ function requirePremium(feature, licenseKey) {
|
|
|
7
7
|
if (!isFeatureEnabled(feature, licenseKey)) {
|
|
8
8
|
console.error(`Error: "${feature}" requires a premium license key.`);
|
|
9
9
|
console.error(` Pass --license-key <key> or set NPM_SCAN_LICENSE_KEY env var.`);
|
|
10
|
-
console.error(`
|
|
10
|
+
console.error(` Contact leo@lateos.ai for a premium license.`);
|
|
11
11
|
process.exit(1);
|
|
12
12
|
}
|
|
13
13
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lateos/npm-scan",
|
|
3
|
-
"version": "0.11.
|
|
3
|
+
"version": "0.11.4",
|
|
4
4
|
"description": "Modern npm supply chain security scanner — detects obfuscated payloads, credential stealers, conditional triggers, sandbox evasion, and worm-like propagation. 11 attack types, SBOM, NIST/EU CRA compliance reporting.",
|
|
5
5
|
"main": "backend/index.js",
|
|
6
6
|
"bin": {
|