codesentry 0.1.2
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 +21 -0
- package/README.md +161 -0
- package/dist/index.js +2502 -0
- package/package.json +74 -0
package/package.json
ADDED
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "codesentry",
|
|
3
|
+
"version": "0.1.2",
|
|
4
|
+
"workspaces": [
|
|
5
|
+
"packages/semgrep-rules"
|
|
6
|
+
],
|
|
7
|
+
"type": "module",
|
|
8
|
+
"description": "CLI de verificação de vulnerabilidades e qualidade de código",
|
|
9
|
+
"license": "MIT",
|
|
10
|
+
"repository": {
|
|
11
|
+
"type": "git",
|
|
12
|
+
"url": "git+https://github.com/Ivan-ReisDev/code-sentry.git"
|
|
13
|
+
},
|
|
14
|
+
"homepage": "https://github.com/Ivan-ReisDev/code-sentry#readme",
|
|
15
|
+
"bugs": {
|
|
16
|
+
"url": "https://github.com/Ivan-ReisDev/code-sentry/issues"
|
|
17
|
+
},
|
|
18
|
+
"bin": {
|
|
19
|
+
"codesentry": "./dist/index.js"
|
|
20
|
+
},
|
|
21
|
+
"main": "./dist/index.js",
|
|
22
|
+
"files": [
|
|
23
|
+
"dist",
|
|
24
|
+
"LICENSE"
|
|
25
|
+
],
|
|
26
|
+
"engines": {
|
|
27
|
+
"node": ">=22.12.0"
|
|
28
|
+
},
|
|
29
|
+
"scripts": {
|
|
30
|
+
"dev": "tsx src/index.ts",
|
|
31
|
+
"build": "tsup src/index.ts --format esm --clean --shims",
|
|
32
|
+
"start": "node dist/index.js",
|
|
33
|
+
"typecheck": "tsc --noEmit",
|
|
34
|
+
"lint": "eslint src tests scripts eslint.config.js prettier.config.js --max-warnings 0",
|
|
35
|
+
"lint:fix": "npm run lint -- --fix",
|
|
36
|
+
"format": "prettier --write src tests scripts packages .github README.md docs",
|
|
37
|
+
"format:check": "prettier --check src tests scripts packages .github README.md docs",
|
|
38
|
+
"test": "vitest run",
|
|
39
|
+
"test:watch": "vitest",
|
|
40
|
+
"prepare:owasp-rules": "node scripts/prepare-owasp-rules.mjs"
|
|
41
|
+
},
|
|
42
|
+
"dependencies": {
|
|
43
|
+
"@babel/core": "^8.0.1",
|
|
44
|
+
"@babel/eslint-parser": "^8.0.1",
|
|
45
|
+
"@babel/parser": "^7.29.8",
|
|
46
|
+
"@babel/plugin-syntax-jsx": "^8.0.1",
|
|
47
|
+
"@babel/plugin-syntax-typescript": "^8.0.3",
|
|
48
|
+
"@clack/prompts": "^1.7.0",
|
|
49
|
+
"chalk": "^6.0.0",
|
|
50
|
+
"cli-table3": "^0.6.5",
|
|
51
|
+
"codesentry-semgrep-rules": "0.1.2",
|
|
52
|
+
"commander": "^15.0.0",
|
|
53
|
+
"eslint": "^10.10.0",
|
|
54
|
+
"eslint-plugin-no-unsanitized": "^4.1.5",
|
|
55
|
+
"eslint-plugin-security": "^4.0.1",
|
|
56
|
+
"figlet": "^1.11.4",
|
|
57
|
+
"gradient-string": "^3.0.0",
|
|
58
|
+
"listr2": "^11.1.0",
|
|
59
|
+
"p-limit": "^7.3.2"
|
|
60
|
+
},
|
|
61
|
+
"optionalDependencies": {
|
|
62
|
+
"codesentry-semgrep-linux-x64": "0.1.2",
|
|
63
|
+
"codesentry-semgrep-win32-x64": "0.1.2"
|
|
64
|
+
},
|
|
65
|
+
"devDependencies": {
|
|
66
|
+
"@types/node": "^26.4.1",
|
|
67
|
+
"eslint-config-prettier": "^10.1.8",
|
|
68
|
+
"prettier": "^3.6.2",
|
|
69
|
+
"tsup": "^8.5.1",
|
|
70
|
+
"tsx": "^4.23.13",
|
|
71
|
+
"typescript": "^7.0.2",
|
|
72
|
+
"vitest": "^5.0.0"
|
|
73
|
+
}
|
|
74
|
+
}
|