package.json (1137B)
1 { 2 "name": "mojic", 3 "version": "2.1.5", 4 "description": "Obfuscate C source code into encrypted, password-seeded emoji streams.", 5 "main": "bin/mojic.js", 6 "bin": { 7 "mojic": "bin/mojic.js" 8 }, 9 "type": "module", 10 "scripts": { 11 "start": "node bin/mojic.js", 12 "build-binaries": "pkg . --out-path dist --public" 13 }, 14 "repository": { 15 "type": "git", 16 "url": "git+https://github.com/notamitgamer/mojic.git" 17 }, 18 "publishConfig": { 19 "registry": "https://npm.pkg.github.com/", 20 "access": "public" 21 }, 22 "dependencies": { 23 "chalk": "^5.6.2", 24 "commander": "^14.0.3", 25 "inquirer": "^13.2.5" 26 }, 27 "devDependencies": { 28 "pkg": "^5.8.1" 29 }, 30 "engines": { 31 "node": ">=18.0.0" 32 }, 33 "keywords": [ 34 "cli", 35 "encryption", 36 "emoji", 37 "obfuscation", 38 "c", 39 "security", 40 "polymorphic" 41 ], 42 "author": "notamitgamer", 43 "license": "Apache-2.0", 44 "pkg": { 45 "scripts": "bin/mojic.js", 46 "assets": [ 47 "lib/**/*", 48 "package.json" 49 ], 50 "targets": [ 51 "node18-win-x64", 52 "node18-linux-x64", 53 "node18-macos-x64" 54 ], 55 "outputPath": "dist" 56 } 57 }