UNPKG

splito

Version:

Passive event based multifile editor

70 lines (69 loc) 1.38 kB
{ "name": "splito", "type": "module", "version": "0.0.38", "description": "Passive event based multifile editor", "main": "index.js", "engines": { "node": ">=16.0.0" }, "scripts": { "test": "jest --verbose --roots src", "build": "tsc", "start": "ts-node ./src/index.ts", "dev": "nodemon --exec ts-node --esm src/index.ts --watch src/index.ts", "semantic-release": "semantic-release -b master && npm publish && semantic-release post", "manual": "npm run build && npm version patch && npm publish" }, "bin": { "splito": "./bin/splito.js" }, "repository": { "type": "git", "url": "https://github.com/natanael/splito.git" }, "keywords": [ "editor", "splito", "repl", "multifile", "terminal", "console" ], "author": { "name": "Natanael Guerra", "url": "http://github.com/natanael" }, "license": "MIT", "dependencies": { "chalk": "^5.3.0", "glob": "^10.3.3", "lodash": "^4.17.21" }, "devDependencies": { "@types/glob": "^8.1.0", "@types/lodash": "^4.14.195", "@types/node": "^20.4.2", "jest": "^29.6.1", "nodemon": "^3.0.1", "prettier": "^3.0.0", "semantic-release": "^21.0.7", "ts-node": "^10.9.1", "tsconfig-paths": "^4.2.0", "typescript": "^5.1.6" }, "prettier": { "useTabs": true, "printWidth": 70 }, "directories": { "lib": "./lib" }, "babel": { "presets": [ [ "env" ] ] } }