luajitos

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

manifest.lua (429B)


      1 return {
      2     name = "clitools",
      3     pretty = "CLI Tools",
      4     developer = "luajitos",
      5     version = "1.0.0",
      6     category = "System",
      7     description = "Command-line file system tools",
      8     entry = "init.lua",
      9     type = "cli",
     10     permissions = {
     11         "ramdisk",
     12         "export",
     13         "system-all"  -- For sys.openFile
     14     },
     15     allowedPaths = {
     16         "/*"  -- Access to entire filesystem for utility commands
     17     }
     18 }