@via-dev/via 0.1.3 → 0.1.4
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 +12 -0
- package/package.json +23 -1
package/README.md
CHANGED
|
@@ -79,6 +79,18 @@ AI is there when you need it - not when you don’t.
|
|
|
79
79
|
- **AI-Assisted (Optional)**: Uses AI only for pattern discovery — never for repeated generation.
|
|
80
80
|
- **Web UI**: A built-in documentation server to browse and manage your saved modules.
|
|
81
81
|
|
|
82
|
+
|
|
83
|
+
## Language support
|
|
84
|
+
|
|
85
|
+
Via currently supports **TypeScript-based projects and modules only**.
|
|
86
|
+
|
|
87
|
+
This allows Via to:
|
|
88
|
+
- understand imports and dependencies accurately
|
|
89
|
+
- perform safe, context-aware renaming
|
|
90
|
+
- validate generated code deterministically
|
|
91
|
+
|
|
92
|
+
Support for other languages or plain JavaScript may be explored in the future.
|
|
93
|
+
|
|
82
94
|
## Supported Technologies
|
|
83
95
|
|
|
84
96
|
Currently, Via is optimized for backend patterns in the following ecosystems:
|
package/package.json
CHANGED
|
@@ -1,10 +1,32 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@via-dev/via",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.4",
|
|
4
4
|
"description": "Via is a CLI tool that learns real project patterns and lets you reuse them without boilerplate or templates.",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
7
7
|
},
|
|
8
|
+
"keywords": [
|
|
9
|
+
"via",
|
|
10
|
+
"cli",
|
|
11
|
+
"ai",
|
|
12
|
+
"productivity",
|
|
13
|
+
"code-generation",
|
|
14
|
+
"boilerplate",
|
|
15
|
+
"template",
|
|
16
|
+
"automation",
|
|
17
|
+
"pattern-learning",
|
|
18
|
+
"typescript",
|
|
19
|
+
"reusability",
|
|
20
|
+
"developer-tools"
|
|
21
|
+
],
|
|
22
|
+
"homepage": "https://github.com/viping7/via",
|
|
23
|
+
"repository": {
|
|
24
|
+
"type": "git",
|
|
25
|
+
"url": "https://github.com/viping7/via"
|
|
26
|
+
},
|
|
27
|
+
"bugs": {
|
|
28
|
+
"url": "https://github.com/viping7/via/issues"
|
|
29
|
+
},
|
|
8
30
|
"license": "MIT",
|
|
9
31
|
"author": "viping7",
|
|
10
32
|
"type": "commonjs",
|