search_vid
Version:
CLI tool for searching subtitles and playing videos at specific timestamps
81 lines • 1.6 kB
JSON
{
"name": "search_vid",
"version": "1.0.3",
"description": "CLI tool for searching subtitles and playing videos at specific timestamps",
"license": "MIT",
"author": {
"name": "Ehsan Bayranvand",
"url": "https://github.com/EBay1992"
},
"bin": {
"search_vid": "./dist/cli.js"
},
"type": "module",
"engines": {
"node": ">=16"
},
"repository": {
"type": "git",
"url": "https://github.com/EBay1992/search_vid"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"start": "node dist/cli.js",
"test": "prettier --check . && xo && ava",
"prepublishOnly": "npm run build"
},
"files": [
"dist"
],
"dependencies": {
"commander": "^11.1.0",
"fast-glob": "^3.2.12",
"fuse.js": "^6.6.2",
"ink": "^4.1.0",
"meow": "^11.0.0",
"react": "^18.2.0"
},
"devDependencies": {
"@sindresorhus/tsconfig": "^3.0.1",
"@types/node": "^20.11.28",
"@types/react": "^18.0.32",
"@vdemedes/prettier-config": "^2.0.1",
"ava": "^5.2.0",
"chalk": "^5.2.0",
"eslint-config-xo-react": "^0.27.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"ink-testing-library": "^3.0.0",
"prettier": "^2.8.7",
"ts-node": "^10.9.1",
"typescript": "^5.0.3",
"xo": "^0.53.1"
},
"ava": {
"extensions": {
"ts": "module",
"tsx": "module"
},
"nodeArguments": [
"--loader=ts-node/esm"
]
},
"xo": {
"extends": "xo-react",
"prettier": true,
"rules": {
"react/prop-types": "off"
}
},
"prettier": "@vdemedes/prettier-config",
"keywords": [
"subtitle",
"search",
"vlc",
"cli",
"video",
"player",
"media"
]
}