gremorie 0.5.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 ADDED
@@ -0,0 +1,3 @@
1
+ # gremorie
2
+
3
+ Unscoped wrapper so `npx gremorie` works. All functionality lives in [`@gremorie/cli`](https://www.npmjs.com/package/@gremorie/cli) — see [gremorie.com](https://gremorie.com) for docs.
@@ -0,0 +1,6 @@
1
+ #!/usr/bin/env node
2
+ // Unscoped wrapper: `npx gremorie` delegates to the real CLI in @gremorie/cli.
3
+ import('@gremorie/cli/bin/gremorie.js').catch((err) => {
4
+ console.error(err);
5
+ process.exit(1);
6
+ });
package/package.json ADDED
@@ -0,0 +1,40 @@
1
+ {
2
+ "name": "gremorie",
3
+ "version": "0.5.1",
4
+ "description": "Unscoped convenience wrapper for the Gremorie CLI. `npx gremorie` delegates to @gremorie/cli.",
5
+ "license": "MIT",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "https://github.com/usegremorie/gremorie.git",
9
+ "directory": "packages/gremorie"
10
+ },
11
+ "keywords": [
12
+ "angular",
13
+ "react",
14
+ "ai",
15
+ "ui",
16
+ "cli"
17
+ ],
18
+ "type": "module",
19
+ "bin": {
20
+ "gremorie": "bin/gremorie.js"
21
+ },
22
+ "files": [
23
+ "bin",
24
+ "README.md"
25
+ ],
26
+ "dependencies": {
27
+ "@gremorie/cli": "^0.5.1"
28
+ },
29
+ "engines": {
30
+ "node": ">=20"
31
+ },
32
+ "homepage": "https://gremorie.com",
33
+ "publishConfig": {
34
+ "access": "public"
35
+ },
36
+ "bugs": {
37
+ "url": "https://github.com/usegremorie/gremorie/issues"
38
+ },
39
+ "author": "Gremorie (https://github.com/usegremorie)"
40
+ }