@collabchron/tharos 0.1.3 → 0.1.5
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.md +10 -5
- package/dist/tharos.exe +0 -0
- package/package.json +7 -2
package/README.md
CHANGED
|
@@ -1,4 +1,7 @@
|
|
|
1
|
-
|
|
1
|
+
<div align="center">
|
|
2
|
+
<img src="docs/public/logo_banner.png" alt="Tharos Logo" width="200"/>
|
|
3
|
+
|
|
4
|
+
# Tharos
|
|
2
5
|
|
|
3
6
|
**AI-Powered Security & Quality Analysis for Modern Development**
|
|
4
7
|
|
|
@@ -8,6 +11,8 @@ Tharos is a comprehensive security analysis tool that combines static code analy
|
|
|
8
11
|
[](https://www.typescriptlang.org/)
|
|
9
12
|
[](https://golang.org/)
|
|
10
13
|
|
|
14
|
+
</div>
|
|
15
|
+
|
|
11
16
|
## ✨ Features
|
|
12
17
|
|
|
13
18
|
### 🔒 Multi-Layer Security Analysis
|
|
@@ -84,7 +89,7 @@ npm install -g tharos
|
|
|
84
89
|
|
|
85
90
|
### From Source
|
|
86
91
|
```bash
|
|
87
|
-
git clone https://github.com/
|
|
92
|
+
git clone https://github.com/chinonsochikelue/tharos.git
|
|
88
93
|
cd tharos
|
|
89
94
|
npm install
|
|
90
95
|
npm run build
|
|
@@ -264,7 +269,7 @@ We welcome contributions! Please see [CONTRIBUTING.md](CONTRIBUTING.md) for guid
|
|
|
264
269
|
### Development Setup
|
|
265
270
|
```bash
|
|
266
271
|
# Clone repository
|
|
267
|
-
git clone https://github.com/
|
|
272
|
+
git clone https://github.com/chinonsochikelue/tharos.git
|
|
268
273
|
cd tharos
|
|
269
274
|
|
|
270
275
|
# Install dependencies
|
|
@@ -359,8 +364,8 @@ MIT License - see [LICENSE](LICENSE) for details
|
|
|
359
364
|
## 💬 Support
|
|
360
365
|
|
|
361
366
|
- **Documentation**: [https://tharos.dev](https://tharos.dev)
|
|
362
|
-
- **Issues**: [GitHub Issues](https://github.com/
|
|
363
|
-
- **Discussions**: [GitHub Discussions](https://github.com/
|
|
367
|
+
- **Issues**: [GitHub Issues](https://github.com/chinonsochikelue/tharos/issues)
|
|
368
|
+
- **Discussions**: [GitHub Discussions](https://github.com/chinonsochikelue/tharos/discussions)
|
|
364
369
|
- **Discord**: [Join our community](https://discord.gg/tharos)
|
|
365
370
|
|
|
366
371
|
---
|
package/dist/tharos.exe
CHANGED
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@collabchron/tharos",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.5",
|
|
4
4
|
"description": "Tharos: Intelligent, Unbreakable Code Policy Enforcement",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"security",
|
|
@@ -15,6 +15,10 @@
|
|
|
15
15
|
"type": "git",
|
|
16
16
|
"url": "https://github.com/chinonsochikelue/tharos"
|
|
17
17
|
},
|
|
18
|
+
"publishConfig": {
|
|
19
|
+
"access": "public"
|
|
20
|
+
},
|
|
21
|
+
"homepage": "https://tharos.vercel.app",
|
|
18
22
|
"files": [
|
|
19
23
|
"dist",
|
|
20
24
|
"README.md",
|
|
@@ -26,7 +30,8 @@
|
|
|
26
30
|
"tharos": "dist/index.js"
|
|
27
31
|
},
|
|
28
32
|
"scripts": {
|
|
29
|
-
"build": "tsc &&
|
|
33
|
+
"build": "tsc && npm run build:binary",
|
|
34
|
+
"build:binary": "node scripts/build-binary.cjs",
|
|
30
35
|
"start": "node --loader ts-node/esm src/index.ts",
|
|
31
36
|
"dev": "node --loader ts-node/esm src/index.ts",
|
|
32
37
|
"test": "echo \"Error: no test specified\" && exit 1"
|