ink-link
Version:
Link component for Ink
78 lines (77 loc) • 1.45 kB
JSON
{
"name": "ink-link",
"version": "4.1.0",
"description": "Link component for Ink",
"license": "MIT",
"repository": "sindresorhus/ink-link",
"funding": "https://github.com/sponsors/sindresorhus",
"author": {
"name": "Sindre Sorhus",
"email": "sindresorhus@gmail.com",
"url": "https://sindresorhus.com"
},
"type": "module",
"exports": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"engines": {
"node": ">=18"
},
"scripts": {
"pretest": "npm run build",
"prepublish": "npm run build",
"test": "xo && NODE_OPTIONS='--import=tsx/esm' FORCE_COLOR=1 ava",
"build": "tsc"
},
"files": [
"dist"
],
"keywords": [
"ink-component",
"ink",
"component",
"link",
"hyperlink",
"url",
"react",
"jsx",
"terminal",
"term",
"console",
"command-line"
],
"dependencies": {
"prop-types": "^15.8.1",
"terminal-link": "^3.0.0"
},
"peerDependencies": {
"ink": ">=4"
},
"devDependencies": {
"@sindresorhus/tsconfig": "^5.0.0",
"@types/react": "^18.3.3",
"ava": "^6.1.3",
"eslint-config-xo-react": "^0.27.0",
"eslint-plugin-react": "^7.34.2",
"eslint-plugin-react-hooks": "^4.6.2",
"ink": "^5.0.0",
"ink-testing-library": "^4.0.0",
"react": "^18.3.1",
"tsx": "^4.11.0",
"typescript": "^5.4.5",
"xo": "^0.58.0"
},
"ava": {
"extensions": {
"ts": "module",
"tsx": "module"
},
"workerThreads": false
},
"xo": {
"extends": [
"xo-react"
]
}
}