-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.94 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 1.94 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
{
"name": "@barestash/cli",
"version": "0.0.1",
"description": "A headless request stash CLI for webhooks, scripts, and AI agents.",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/barestashhq/cli.git"
},
"homepage": "https://github.com/barestashhq/cli#readme",
"bugs": {
"url": "https://github.com/barestashhq/cli/issues"
},
"keywords": [
"webhook",
"request-bin",
"cli",
"jsonl",
"developer-tools"
],
"type": "module",
"packageManager": "pnpm@11.10.0",
"engines": {
"node": ">=22.13.0"
},
"files": [
"dist",
"LICENSE",
"README.md",
"THIRD_PARTY_NOTICES.md"
],
"bin": {
"barestash": "dist/barestash.js"
},
"scripts": {
"build": "node scripts/build.mjs",
"check": "pnpm run typecheck && biome check . && pnpm run lint:md && pnpm run test",
"dev": "tsx src/barestash.ts",
"format": "biome check --write .",
"lint": "biome lint .",
"lint:md": "markdownlint-cli2",
"lint:md:fix": "markdownlint-cli2 --fix",
"package:smoke": "node scripts/package-smoke.mjs",
"prepack": "pnpm run build",
"prepublishOnly": "pnpm run check && pnpm run package:smoke",
"test": "vitest run --config vitest.config.ts",
"test:coverage": "vitest run --coverage --config vitest.config.ts",
"typecheck": "pnpm --filter @barestash/cli-protocol typecheck && tsc --noEmit --project tsconfig.typecheck.json --pretty false"
},
"dependencies": {
"@github/keytar": "7.10.6"
},
"devDependencies": {
"@barestash/cli-protocol": "workspace:*",
"@biomejs/biome": "2.5.3",
"@types/node": "26.1.0",
"@vitest/coverage-v8": "4.1.10",
"commander": "15.0.0",
"esbuild": "0.28.1",
"markdownlint-cli2": "^0.23.0",
"string-width": "8.2.2",
"tsx": "4.23.0",
"typescript": "6.0.3",
"vitest": "4.1.10"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}