cezarion 0.10.0-pr30.54

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.
Files changed (2) hide show
  1. package/bin.js +7 -0
  2. package/package.json +22 -0
package/bin.js ADDED
@@ -0,0 +1,7 @@
1
+ #!/usr/bin/env node
2
+ // `npx cezarion` resolves this unscoped alias; the real tool is @wjarka/cezarion.
3
+ // Bare specifier, never a deep path: that package declares an `exports` map, so Node serves
4
+ // only the subpaths it lists and hard-blocks the rest — importing `./dist/index.js` threw
5
+ // ERR_PACKAGE_PATH_NOT_EXPORTED at every user, on a file sitting right there in the tarball
6
+ // (#851). `.` already maps to ./dist/index.js, so this lands on the same module legally.
7
+ import('@wjarka/cezarion');
package/package.json ADDED
@@ -0,0 +1,22 @@
1
+ {
2
+ "name": "cezarion",
3
+ "version": "0.10.0-pr30.54",
4
+ "description": "Alias for @wjarka/cezarion — so `npx cezarion` just works. Local cockpit for running and tracking AI agent tasks in your repo.",
5
+ "license": "MIT",
6
+ "type": "module",
7
+ "bin": {
8
+ "cezarion": "bin.js",
9
+ "cez": "bin.js"
10
+ },
11
+ "dependencies": {
12
+ "@wjarka/cezarion": "0.10.0-pr30.54"
13
+ },
14
+ "publishConfig": {
15
+ "access": "public"
16
+ },
17
+ "repository": {
18
+ "type": "git",
19
+ "url": "https://github.com/wjarka/cezar",
20
+ "directory": "packages/cezar"
21
+ }
22
+ }