UNPKG

sinotron

Version:

Simple framework for Typescript Electron projects

58 lines (57 loc) 1.43 kB
{ "name": "sinotron", "version": "0.1.0-alpha", "description": "Simple framework for Typescript Electron projects", "main": "dist/index.js", "type": "module", "bin": { "sinotron": "dist/cli/bin.js" }, "scripts": { "clean": "rimraf dist/", "build": "tsc", "postbuild": "copyfiles -u 1 src/**/*.code dist/", "build:clean": "npm run clean && npm run build", "prepublishOnly": "npm run build:clean", "check": "tsc --noEmit", "install-cli": "./install-cli.sh", "devc-verdaccio": "devc verdaccio", "test": "echo 'No tests specified'" }, "keywords": [ "sinotron", "electron", "electron-vite" ], "author": "Ikenna Agbasimalo <michfx@gmail.com>", "license": "MIT", "files": [ "dist/", "LICENSE", "package.json", "README.md" ], "devDependencies": { "@types/fs-extra": "^11.0.4", "@types/inquirer": "^9.0.7", "@types/inquirer-fuzzy-path": "^2.3.9", "@types/node": "^22.7.5", "@types/shelljs": "^0.8.15", "copyfiles": "^2.4.1", "prettier": "^3.3.3", "rimraf": "^6.0.1", "tsx": "^4.19.1", "typescript": "^5.6.3" }, "dependencies": { "@utilis/fs": "^1.1.5", "chalk": "^5.3.0", "change-case": "^5.4.4", "commander": "^12.1.0", "fs-extra": "^11.2.0", "inquirer": "^12.0.0", "inquirer-file-selector": "^0.4.0", "inquirer-fuzzy-path": "^2.3.0", "shelljs": "^0.8.5" } }