cadelic 0.0.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/cli.js +6 -0
- package/package.json +24 -0
package/cli.js
ADDED
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
|
|
3
|
+
console.log("\n ✨ Cadelic — The Agentic Interface Compiler");
|
|
4
|
+
console.log(" --------------------------------------------");
|
|
5
|
+
console.log(" Website: https://cadelic.com");
|
|
6
|
+
console.log(" Coming soon. Run `npx cadelic` in the future to scaffold new projects.\n");
|
package/package.json
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "cadelic",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "An agentic visual web builder and interface compiler you host yourself.",
|
|
5
|
+
"bin": {
|
|
6
|
+
"cadelic": "./cli.js"
|
|
7
|
+
},
|
|
8
|
+
"main": "cli.js",
|
|
9
|
+
"scripts": {
|
|
10
|
+
"test": "echo \"Error: no test specified\" && exit 1"
|
|
11
|
+
},
|
|
12
|
+
"keywords": [
|
|
13
|
+
"cadelic",
|
|
14
|
+
"interface-compiler",
|
|
15
|
+
"agentic",
|
|
16
|
+
"nextjs",
|
|
17
|
+
"react",
|
|
18
|
+
"tailwind",
|
|
19
|
+
"ast",
|
|
20
|
+
"builder"
|
|
21
|
+
],
|
|
22
|
+
"author": "Xavier Sonski <xavier@son.ski>",
|
|
23
|
+
"license": "MIT"
|
|
24
|
+
}
|