fraude-code 0.1.0 → 0.1.1
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 -0
- package/dist/index.js +12 -1
- package/package.json +1 -1
- package/src/components/IntroComponent.tsx +2 -0
package/README.md
CHANGED
|
@@ -5,6 +5,16 @@
|
|
|
5
5
|
</p>
|
|
6
6
|
<p align="center">Just another AI coding agent.</p>
|
|
7
7
|
|
|
8
|
+
<p align="center">
|
|
9
|
+
<a href="https://www.npmjs.com/package/fraude-code"><img alt="npm" src="https://img.shields.io/npm/v/fraude-code?style=flat-square" /></a>
|
|
10
|
+
</p>
|
|
11
|
+
|
|
12
|
+
## Installation
|
|
13
|
+
|
|
14
|
+
```bash
|
|
15
|
+
npm install -g fraude-code
|
|
16
|
+
```
|
|
17
|
+
|
|
8
18
|
---
|
|
9
19
|
|
|
10
20
|
## What is FraudeCode?
|
package/dist/index.js
CHANGED
|
@@ -178872,6 +178872,10 @@ init_useFraudeStore();
|
|
|
178872
178872
|
// src/components/IntroComponent.tsx
|
|
178873
178873
|
import { Box as Box18, Text as Text18 } from "ink";
|
|
178874
178874
|
import Gradient from "ink-gradient";
|
|
178875
|
+
// package.json
|
|
178876
|
+
var version = "0.1.1";
|
|
178877
|
+
|
|
178878
|
+
// src/components/IntroComponent.tsx
|
|
178875
178879
|
import { jsxDEV as jsxDEV20 } from "react/jsx-dev-runtime";
|
|
178876
178880
|
var INTRO_THEME = {
|
|
178877
178881
|
primary: "#FFB6C1",
|
|
@@ -178926,7 +178930,14 @@ function IntroComponent() {
|
|
|
178926
178930
|
/* @__PURE__ */ jsxDEV20(Text18, {
|
|
178927
178931
|
italic: true,
|
|
178928
178932
|
children: "Agentic AI Assistant"
|
|
178929
|
-
}, undefined, false, undefined, this)
|
|
178933
|
+
}, undefined, false, undefined, this),
|
|
178934
|
+
/* @__PURE__ */ jsxDEV20(Text18, {
|
|
178935
|
+
color: INTRO_THEME.dim,
|
|
178936
|
+
children: [
|
|
178937
|
+
" v",
|
|
178938
|
+
version
|
|
178939
|
+
]
|
|
178940
|
+
}, undefined, true, undefined, this)
|
|
178930
178941
|
]
|
|
178931
178942
|
}, undefined, true, undefined, this)
|
|
178932
178943
|
}, undefined, false, undefined, this),
|
package/package.json
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { Box, Text } from "ink";
|
|
2
2
|
import Gradient from "ink-gradient";
|
|
3
|
+
import { version } from "../../package.json";
|
|
3
4
|
|
|
4
5
|
const INTRO_THEME = {
|
|
5
6
|
primary: "#FFB6C1",
|
|
@@ -45,6 +46,7 @@ export default function IntroComponent() {
|
|
|
45
46
|
<Text color={INTRO_THEME.primaryDim}>
|
|
46
47
|
FRAUDE CODE <Text color={INTRO_THEME.dim}>·</Text>{" "}
|
|
47
48
|
<Text italic>Agentic AI Assistant</Text>
|
|
49
|
+
<Text color={INTRO_THEME.dim}> v{version}</Text>
|
|
48
50
|
</Text>
|
|
49
51
|
</Box>
|
|
50
52
|
|