zalk-ai 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.
Files changed (3) hide show
  1. package/README.md +17 -0
  2. package/dist/index.js +4 -0
  3. package/package.json +23 -0
package/README.md ADDED
@@ -0,0 +1,17 @@
1
+ # zalk
2
+
3
+ Zalk CLI.
4
+
5
+ ## Installation
6
+
7
+ ```sh
8
+ npm install -g zalk
9
+ ```
10
+
11
+ ## Usage
12
+
13
+ ```sh
14
+ zalk
15
+ # or using the short alias
16
+ arb
17
+ ```
package/dist/index.js ADDED
@@ -0,0 +1,4 @@
1
+ #!/usr/bin/env node
2
+
3
+ // index.ts
4
+ console.log("Hello via Zalk, we are currently in development mode!");
package/package.json ADDED
@@ -0,0 +1,23 @@
1
+ {
2
+ "name": "zalk-ai",
3
+ "version": "0.0.1",
4
+ "description": "Zalk CLI",
5
+ "type": "module",
6
+ "bin": {
7
+ "zalk": "./dist/index.js",
8
+ "arb": "./dist/index.js"
9
+ },
10
+ "files": [
11
+ "dist"
12
+ ],
13
+ "scripts": {
14
+ "build": "bun build ./index.ts --outdir ./dist --target node && node -e \"const fs=require('fs');const f='dist/index.js';const c=fs.readFileSync(f,'utf8');if(!c.startsWith('#!/usr/bin/env node'))fs.writeFileSync(f,'#!/usr/bin/env node\\n'+c);fs.chmodSync(f,'755');\"",
15
+ "prepublishOnly": "bun run build"
16
+ },
17
+ "devDependencies": {
18
+ "@types/bun": "latest"
19
+ },
20
+ "peerDependencies": {
21
+ "typescript": "^5"
22
+ }
23
+ }