xploitscan-shared-rules 1.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/dist/index.cjs +5597 -0
- package/dist/index.cjs.map +1 -0
- package/dist/index.d.cts +249 -0
- package/dist/index.d.ts +249 -0
- package/dist/index.js +5394 -0
- package/dist/index.js.map +1 -0
- package/package.json +54 -0
package/package.json
ADDED
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "xploitscan-shared-rules",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "Shared XploitScan rule definitions, helpers, compliance mappings, and AI false-positive filter. Consumed by the xploitscan CLI, the web scan API, and the GitHub Action so rules and filtering behavior can't drift between surfaces.",
|
|
5
|
+
"publishConfig": {
|
|
6
|
+
"access": "public"
|
|
7
|
+
},
|
|
8
|
+
"keywords": [
|
|
9
|
+
"security",
|
|
10
|
+
"scanner",
|
|
11
|
+
"vibe-coding",
|
|
12
|
+
"ai",
|
|
13
|
+
"vulnerability",
|
|
14
|
+
"owasp",
|
|
15
|
+
"xploitscan"
|
|
16
|
+
],
|
|
17
|
+
"author": "XploitScan <hello@xploitscan.com>",
|
|
18
|
+
"license": "MIT",
|
|
19
|
+
"homepage": "https://xploitscan.com",
|
|
20
|
+
"repository": {
|
|
21
|
+
"type": "git",
|
|
22
|
+
"url": "https://github.com/bgage72590/vibecheck",
|
|
23
|
+
"directory": "packages/shared-rules"
|
|
24
|
+
},
|
|
25
|
+
"type": "module",
|
|
26
|
+
"main": "./dist/index.cjs",
|
|
27
|
+
"module": "./dist/index.js",
|
|
28
|
+
"types": "./dist/index.d.ts",
|
|
29
|
+
"exports": {
|
|
30
|
+
".": {
|
|
31
|
+
"types": "./dist/index.d.ts",
|
|
32
|
+
"import": "./dist/index.js",
|
|
33
|
+
"require": "./dist/index.cjs"
|
|
34
|
+
}
|
|
35
|
+
},
|
|
36
|
+
"files": [
|
|
37
|
+
"dist/"
|
|
38
|
+
],
|
|
39
|
+
"scripts": {
|
|
40
|
+
"build": "tsup",
|
|
41
|
+
"dev": "tsup --watch",
|
|
42
|
+
"test": "vitest run",
|
|
43
|
+
"clean": "rm -rf dist"
|
|
44
|
+
},
|
|
45
|
+
"dependencies": {
|
|
46
|
+
"@anthropic-ai/sdk": "^0.39.0"
|
|
47
|
+
},
|
|
48
|
+
"devDependencies": {
|
|
49
|
+
"@types/node": "^20.0.0",
|
|
50
|
+
"tsup": "^8.3.0",
|
|
51
|
+
"typescript": "^5.7.0",
|
|
52
|
+
"vitest": "^3.0.0"
|
|
53
|
+
}
|
|
54
|
+
}
|