-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.42 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.42 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
{
"name": "bluebubbles-cli",
"version": "0.1.7",
"description": "Curated BlueBubbles CLI organized around terminal-friendly resources",
"repository": {
"type": "git",
"url": "https://github.com/anmho/bluebubbles-cli"
},
"type": "module",
"bin": {
"bluebubbles": "dist/index.js"
},
"files": [
"dist",
"docs"
],
"scripts": {
"dev": "bun run src/index.ts",
"build": "tsc -p tsconfig.build.json && tsc-alias -p tsconfig.build.json --resolve-full-paths && chmod +x dist/index.js",
"install:system": "bun run build && bun link",
"uninstall:system": "bun unlink",
"check": "tsc -p tsconfig.build.json --noEmit",
"test": "bun test src/index.test.ts src/lib/*.test.ts",
"test:commands": "bun run scripts/test-commands.ts",
"test:commands:strict": "TEST_COMMANDS_STRICT=1 bun run scripts/test-commands.ts",
"docs:dev": "python3 -m http.server 3005 --directory scalar",
"docs:validate": "test -f scalar/index.html",
"release": "bun run check && bun run build && npm publish --cache /tmp/npm-cache"
},
"devDependencies": {
"@types/bun": "^1.3.12",
"@types/columnify": "^1.5.4",
"@types/node": "^25.6.0",
"openapi-typescript": "^7.13.0",
"tsc-alias": "^1.8.16",
"typescript": "^6.0.2",
"yaml": "^2.8.3"
},
"dependencies": {
"@anmho/bluebubbles-sdk": "0.1.1",
"columnify": "^1.6.0",
"commander": "^14.0.3",
"zod": "^4.3.6"
}
}