93 lines
No EOL
2.1 KiB
JSON
93 lines
No EOL
2.1 KiB
JSON
{
|
|
"name": "@bomb.sh/tab",
|
|
"version": "0.0.10",
|
|
"main": "./dist/t.js",
|
|
"types": "./dist/t.d.ts",
|
|
"type": "module",
|
|
"bin": {
|
|
"tab": "./dist/bin/cli.js"
|
|
},
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"keywords": [
|
|
"bombshell",
|
|
"tab",
|
|
"completion",
|
|
"autocomplete"
|
|
],
|
|
"author": "Bombshell Authors (https://github.com/bombshell-dev)",
|
|
"homepage": "https://github.com/bombshell-dev/tab#readme",
|
|
"bugs": {
|
|
"url": "https://github.com/bombshell-dev/tab/issues"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/bombshell-dev/tab.git"
|
|
},
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"@changesets/cli": "^2.29.6",
|
|
"@eslint/js": "^9.33.0",
|
|
"@types/node": "^22.7.4",
|
|
"cac": "^6.7.14",
|
|
"citty": "^0.1.6",
|
|
"commander": "^13.1.0",
|
|
"eslint": "^9.33.0",
|
|
"eslint-config-prettier": "^10.0.1",
|
|
"prettier": "^3.5.2",
|
|
"tinybench": "^4.0.1",
|
|
"tsdown": "^0.15.4",
|
|
"tsx": "^4.19.1",
|
|
"typescript": "^5.7.3",
|
|
"typescript-eslint": "^8.40.0",
|
|
"vitest": "^2.1.3"
|
|
},
|
|
"peerDependencies": {
|
|
"cac": "^6.7.14",
|
|
"citty": "^0.1.6",
|
|
"commander": "^13.1.0"
|
|
},
|
|
"peerDependenciesMeta": {
|
|
"cac": {
|
|
"optional": true
|
|
},
|
|
"citty": {
|
|
"optional": true
|
|
},
|
|
"commander": {
|
|
"optional": true
|
|
}
|
|
},
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/t.d.ts",
|
|
"import": "./dist/t.js",
|
|
"require": "./dist/t.js"
|
|
},
|
|
"./citty": {
|
|
"types": "./dist/citty.d.ts",
|
|
"import": "./dist/citty.js",
|
|
"require": "./dist/citty.js"
|
|
},
|
|
"./cac": {
|
|
"types": "./dist/cac.d.ts",
|
|
"import": "./dist/cac.js",
|
|
"require": "./dist/cac.js"
|
|
},
|
|
"./commander": {
|
|
"types": "./dist/commander.d.ts",
|
|
"import": "./dist/commander.js",
|
|
"require": "./dist/commander.js"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"test": "vitest run",
|
|
"type-check": "tsc --noEmit",
|
|
"format": "prettier --write .",
|
|
"format:check": "prettier --check .",
|
|
"build": "tsdown",
|
|
"lint": "eslint src \"./*.ts\"",
|
|
"benchmark": "tsx benchmarks/completion.bench.ts"
|
|
}
|
|
} |