UNPKG

viteshell

Version:

A minimalistic shell implementation written in TypeScript.

78 lines (77 loc) 2.01 kB
{ "name": "viteshell", "version": "0.8.1", "description": "A minimalistic shell implementation written in TypeScript.", "main": "./dist/viteshell.umd.js", "module": "./dist/viteshell.esm.js", "browser": "./dist/viteshell.umd.js", "types": "./dist/viteshell.d.ts", "type": "module", "files": [ "dist", "./LICENSE.txt", "./README.md" ], "scripts": { "dev": "tsc -w", "build:ts": "tsc -b", "build:js": "rollup -c", "build": "pnpm build:ts && pnpm build:js", "lint": "eslint ./source --ext .ts", "lint:fix": "eslint \"source/**/*.ts\" --fix", "prepack": "pnpm build", "prepare": "husky install", "release": "release-it", "test": "jest --detectOpenHandles" }, "repository": { "type": "git", "url": "https://github.com/henryhale/viteshell.git" }, "keywords": [ "bash", "cli", "command", "console", "executor", "sh", "shell", "terminal" ], "author": { "name": "Henry Hale", "url": "https://github.com/henryhale" }, "license": "MIT", "bugs": { "url": "https://github.com/henryhale/viteshell/issues" }, "homepage": "https://github.com/henryhale/viteshell#readme", "devDependencies": { "@babel/core": "^7.24.3", "@babel/preset-env": "^7.24.3", "@release-it/conventional-changelog": "^8.0.1", "@rollup/plugin-babel": "^6.0.4", "@rollup/plugin-commonjs": "^25.0.7", "@rollup/plugin-node-resolve": "^15.2.3", "@rollup/plugin-replace": "^5.0.5", "@rollup/plugin-terser": "^0.4.4", "@types/jest": "^29.5.12", "@typescript-eslint/eslint-plugin": "^7.5.0", "@typescript-eslint/parser": "^7.5.0", "babel-jest": "^29.7.0", "eslint": "^8.57.0", "eslint-plugin-prettier": "^5.1.3", "husky": "^9.0.11", "jest": "^29.7.0", "prettier": "^3.2.5", "release-it": "^17.1.1", "rollup": "^4.14.0", "ts-jest": "^29.1.2", "typescript": "^5.4.3" }, "engines": { "node": ">=14", "pnpm": ">=7" } }