@codeexpander/plugin-text 0.1.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.
@@ -0,0 +1,13 @@
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8" />
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0" />
6
+ <title>Text Tools</title>
7
+ <script type="module" crossorigin src="./assets/index-LuSy_WNr.js"></script>
8
+ <link rel="stylesheet" crossorigin href="./assets/index-Ikv0Zvyh.css">
9
+ </head>
10
+ <body>
11
+ <div id="root"></div>
12
+ </body>
13
+ </html>
@@ -0,0 +1,21 @@
1
+ {
2
+ "main": "index.html",
3
+ "title": "Text Tools",
4
+ "description": "Word counter, text diff, case converter, regex tester, find & replace, and more text utilities.",
5
+ "category": "text",
6
+ "order": 1,
7
+ "features": [
8
+ { "code": "word_counter", "explain": "Count words, characters, and lines in text", "cmds": ["word count", "character count"] },
9
+ { "code": "text_diff", "explain": "Compare two texts and highlight differences", "cmds": ["diff", "compare text"] },
10
+ { "code": "case_convert", "explain": "Convert text between uppercase, lowercase, camelCase", "cmds": ["case", "uppercase", "lowercase"] },
11
+ { "code": "regex_tester", "explain": "Test and debug regular expressions", "cmds": ["regex", "pattern"] },
12
+ { "code": "find_replace", "explain": "Find and replace text", "cmds": ["find replace", "search substitute"] },
13
+ { "code": "prefix_suffix", "explain": "Add prefix or suffix to each line", "cmds": ["prefix", "suffix", "lines"] },
14
+ { "code": "line_breaks", "explain": "Add or remove line breaks", "cmds": ["line break", "wrap"] },
15
+ { "code": "remove_duplicate_lines", "explain": "Remove duplicate lines", "cmds": ["dedupe lines"] },
16
+ { "code": "remove_empty_lines", "explain": "Remove empty lines", "cmds": ["empty lines"] },
17
+ { "code": "remove_extra_spaces", "explain": "Trim and normalize whitespace", "cmds": ["trim", "spaces"] },
18
+ { "code": "em_dash", "explain": "Replace em dashes with other punctuation", "cmds": ["em dash"] }
19
+ ],
20
+ "pluginSetting": { "height": 520 }
21
+ }
package/package.json ADDED
@@ -0,0 +1,35 @@
1
+ {
2
+ "name": "@codeexpander/plugin-text",
3
+ "version": "0.1.0",
4
+ "private": false,
5
+ "type": "module",
6
+ "files": [
7
+ "dist"
8
+ ],
9
+ "publishConfig": {
10
+ "access": "public"
11
+ },
12
+ "dependencies": {
13
+ "lucide-react": "^0.462.0",
14
+ "react": "^18.3.1",
15
+ "react-dom": "^18.3.1",
16
+ "@online-dev-tools/i18n": "0.0.0",
17
+ "@online-dev-tools/ui": "0.0.0"
18
+ },
19
+ "devDependencies": {
20
+ "@types/react": "^18.3.3",
21
+ "@types/react-dom": "^18.3.0",
22
+ "@vitejs/plugin-react-swc": "^3.5.0",
23
+ "autoprefixer": "^10.4.20",
24
+ "postcss": "^8.4.47",
25
+ "tailwindcss": "^3.4.11",
26
+ "tailwindcss-animate": "^1.0.7",
27
+ "typescript": "^5.5.3",
28
+ "vite": "^5.4.1"
29
+ },
30
+ "scripts": {
31
+ "dev": "vite",
32
+ "build": "vite build && cp plugin.json dist/",
33
+ "lint": "eslint . --max-warnings 0"
34
+ }
35
+ }