-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.96 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.96 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
{
"name": "@bun913/zephyr-cli",
"version": "1.2.3",
"description": "CLI tool for Zephyr Scale API",
"type": "module",
"bin": {
"zephyr": "dist/index.js"
},
"scripts": {
"dev": "bun run src/index.ts",
"build": "bun build src/index.ts --outdir dist --target node --external react-devtools-core",
"build:binary": "bun build src/index.ts --compile --outfile zephyr",
"build:binary:all": "bun run build:binary:macos && bun run build:binary:linux && bun run build:binary:windows",
"build:binary:macos": "bun build src/index.ts --compile --target=bun-darwin-arm64 --outfile dist/zephyr-macos-arm64 && bun build src/index.ts --compile --target=bun-darwin-x64 --outfile dist/zephyr-macos-x64",
"build:binary:linux": "bun build src/index.ts --compile --target=bun-linux-x64 --outfile dist/zephyr-linux-x64",
"build:binary:windows": "bun build src/index.ts --compile --target=bun-windows-x64 --outfile dist/zephyr-windows-x64.exe",
"test": "vitest --watch --reporter=verbose",
"test:ci": "vitest run --coverage --reporter=verbose",
"lint": "biome check .",
"lint:fix": "biome check --fix .",
"format": "biome format --write ."
},
"keywords": [
"zephyr",
"zephyr-scale",
"cli",
"test-management",
"jira"
],
"author": "bun913",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/bun913/zephyr-cli"
},
"dependencies": {
"@inkjs/ui": "^2.0.0",
"commander": "^14.0.3",
"ink": "^6.8.0",
"react": "^19.2.4",
"zephyr-api-client": "^0.3.6"
},
"devDependencies": {
"@biomejs/biome": "^2.4.10",
"@types/react": "^19.2.14",
"@vitest/coverage-v8": "^4.1.2",
"bun-types": "^1.3.11",
"react-devtools-core": "^7.0.1",
"typescript": "^5.9.3",
"vitest": "^4.1.2"
},
"engines": {
"node": ">=18.0.0"
},
"packageManager": "bun@1.0.0",
"files": [
"dist/index.js",
"README.md"
],
"publishConfig": {
"access": "public"
}
}