-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 1.95 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 1.95 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "@bomb.sh/tab",
"version": "0.0.14",
"type": "module",
"bin": {
"tab": "./dist/bin/cli.mjs"
},
"scripts": {
"test": "vitest run",
"type-check": "tsc --noEmit",
"format": "prettier --write .",
"format:check": "prettier --check .",
"build": "tsdown",
"prepare": "pnpm build",
"lint": "eslint src \"./*.ts\"",
"benchmark": "tsx benchmarks/completion.bench.ts"
},
"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.2.0",
"commander": "^13.1.0",
"eslint": "^9.33.0",
"eslint-config-prettier": "^10.0.1",
"prettier": "^3.5.2",
"tinybench": "^4.0.1",
"tsdown": "^0.20.3",
"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 || ^0.2.0",
"commander": "^13.1.0"
},
"peerDependenciesMeta": {
"cac": {
"optional": true
},
"citty": {
"optional": true
},
"commander": {
"optional": true
}
},
"exports": {
".": "./dist/index.mjs",
"./bin/cli": "./dist/bin/cli.mjs",
"./cac": "./dist/cac.mjs",
"./citty": "./dist/citty.mjs",
"./commander": "./dist/commander.mjs",
"./package.json": "./package.json"
},
"packageManager": "pnpm@10.15.0+sha512.486ebc259d3e999a4e8691ce03b5cac4a71cbeca39372a9b762cb500cfdf0873e2cb16abe3d951b1ee2cf012503f027b98b6584e4df22524e0c7450d9ec7aa7b"
}