fn-ai-windows-arm64 0.1.2

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/bin/fn.exe ADDED
Binary file
@@ -0,0 +1,10 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["index.ts"],
4
+ "sourcesContent": [
5
+ "#!/usr/bin/env bun\n\nconst args = Bun.argv.slice(2);\nconst command = args[0];\n\nfunction showHelp() {\n console.log(`fn - A CLI tool\n\nUsage:\n fn <command> [options]\n\nCommands:\n help Show this help message\n\nOptions:\n --help, -h Show help\n --version, -v Show version`);\n}\n\nfunction showVersion() {\n console.log(\"fn v0.1.0\");\n}\n\nswitch (command) {\n case \"help\":\n case \"--help\":\n case \"-h\":\n case undefined:\n showHelp();\n break;\n case \"--version\":\n case \"-v\":\n showVersion();\n break;\n default:\n console.error(`Unknown command: ${command}`);\n showHelp();\n process.exit(1);\n}\n"
6
+ ],
7
+ "mappings": ";;AAEA,IAAM,EAAO,IAAI,KAAK,MAAM,CAAC,EACvB,EAAU,EAAK,GAErB,SAAS,CAAQ,EAAG,CAClB,QAAQ,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,6BAUe,EAG7B,SAAS,CAAW,EAAG,CACrB,QAAQ,IAAI,WAAW,EAGzB,OAAQ,OACD,WACA,aACA,SACA,QACH,EAAS,EACT,UACG,gBACA,KACH,EAAY,EACZ,cAEA,QAAQ,MAAM,oBAAoB,GAAS,EAC3C,EAAS,EACT,QAAQ,KAAK,CAAC",
8
+ "debugId": "FCC7A6B4BC8E459764756E2164756E21",
9
+ "names": []
10
+ }
package/package.json ADDED
@@ -0,0 +1,14 @@
1
+ {
2
+ "name": "fn-ai-windows-arm64",
3
+ "version": "0.1.2",
4
+ "description": "fn binary for win32-arm64",
5
+ "os": [
6
+ "win32"
7
+ ],
8
+ "cpu": [
9
+ "arm64"
10
+ ],
11
+ "files": [
12
+ "bin"
13
+ ]
14
+ }