@elytrasec/engine 0.3.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/package.json ADDED
@@ -0,0 +1,57 @@
1
+ {
2
+ "name": "@elytrasec/engine",
3
+ "version": "0.3.0",
4
+ "description": "Core analysis engine for Elytra — 120+ detection rules, static + AI scanning, scoring",
5
+ "license": "MIT",
6
+ "author": "ElytraSec <hello@elytrasec.io>",
7
+ "homepage": "https://elytrasec.io",
8
+ "bugs": "https://github.com/ElytraSec/elytrasecsec/issues",
9
+ "keywords": ["security", "scanner", "static-analysis", "code-review", "vulnerability-detection"],
10
+ "engines": {
11
+ "node": ">=20"
12
+ },
13
+ "repository": {
14
+ "type": "git",
15
+ "url": "https://github.com/ElytraSec/elytrasecsec.git",
16
+ "directory": "packages/engine"
17
+ },
18
+ "publishConfig": {
19
+ "access": "public"
20
+ },
21
+ "type": "module",
22
+ "main": "dist/index.js",
23
+ "types": "dist/index.d.ts",
24
+ "files": [
25
+ "dist"
26
+ ],
27
+ "scripts": {
28
+ "build": "tsup src/index.ts --format esm --dts --clean",
29
+ "dev": "tsup src/index.ts --format esm --dts --watch",
30
+ "lint": "eslint src/",
31
+ "test": "vitest run"
32
+ },
33
+ "dependencies": {
34
+ "js-yaml": "^4.1.1",
35
+ "typescript": "^5.7.0",
36
+ "zod": "^3.24.0"
37
+ },
38
+ "peerDependencies": {
39
+ "@anthropic-ai/sdk": "^0.39.0",
40
+ "openai": "^4.0.0"
41
+ },
42
+ "peerDependenciesMeta": {
43
+ "@anthropic-ai/sdk": {
44
+ "optional": true
45
+ },
46
+ "openai": {
47
+ "optional": true
48
+ }
49
+ },
50
+ "devDependencies": {
51
+ "@anthropic-ai/sdk": "^0.39.0",
52
+ "@types/js-yaml": "^4.0.9",
53
+ "@types/node": "^22.0.0",
54
+ "tsup": "^8.3.0",
55
+ "vitest": "^3.0.0"
56
+ }
57
+ }