-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.73 KB
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 1.73 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
{
"name": "testing-assistant-project",
"version": "1.1.0",
"description": "Developer Testing Assistant Kit - Automated testing scenarios from GitHub PRs and Jira tickets",
"type": "module",
"main": "src/main.ts",
"scripts": {
"start": "bun run src/main.ts",
"dev": "bun run --watch src/main.ts",
"build": "mkdir -p dist && bun build --compile --outfile=dist/tap src/main.ts",
"build:all": "bun run build",
"build:cross": "bun run build:linux && bun run build:windows && bun run build:macos",
"build:linux": "mkdir -p dist && bun build --compile --target=bun-linux-x64 --outfile=dist/tap-linux-x64 src/main.ts && bun build --compile --target=bun-linux-arm64 --outfile=dist/tap-linux-arm64 src/main.ts",
"build:windows": "mkdir -p dist && bun build --compile --target=bun-windows-x64 --outfile=dist/tap-windows-x64.exe src/main.ts && bun build --compile --target=bun-windows-x64-baseline --outfile=dist/tap-windows-x64-baseline.exe src/main.ts",
"build:macos": "mkdir -p dist && bun build --compile --target=bun-darwin-x64 --outfile=dist/tap-macos-x64 src/main.ts && bun build --compile --target=bun-darwin-arm64 --outfile=dist/tap-macos-arm64 src/main.ts",
"build:all:cross": "bun run build:linux && bun run build:windows && bun run build:macos",
"clean": "rm -rf dist/",
"format": "bun x prettier --write .",
"lint": "bun x eslint src/"
},
"dependencies": {
"chalk": "5.6.2",
"commander": "14.0.2",
"inquirer": "12.11.1"
},
"devDependencies": {
"@types/node": "24.10.1",
"@typescript-eslint/eslint-plugin": "8.46.4",
"@typescript-eslint/parser": "8.46.4",
"eslint": "9.39.1",
"prettier": "3.6.2",
"typescript": "5.9.3"
},
"engines": {
"bun": ">=1.2.0"
}
}