๐Ÿ“ฆ juspay / workforge

๐Ÿ“„ package.json ยท 53 lines
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{
  "name": "workforge",
  "version": "1.2.0",
  "type": "module",
  "description": "Smart Git workspace manager with automatic environment setup, Jira integration, and intelligent package management",
  "main": "dist/index.js",
  "bin": {
    "workforge": "./dist/index.js",
    "wf": "./dist/index.js"
  },
  "scripts": {
    "build": "tsc",
    "dev": "tsx src/index.ts",
    "lint": "eslint src --ext .ts",
    "lint:fix": "eslint src --ext .ts --fix",
    "prepublishOnly": "pnpm run lint && pnpm run build"
  },
  "keywords": [
    "git",
    "worktree",
    "cli",
    "development",
    "branch-management"
  ],
  "author": "Your Name",
  "license": "MIT",
  "devDependencies": {
    "@types/inquirer": "^9.0.9",
    "@types/node": "^20.0.0",
    "@types/yargs": "^17.0.0",
    "@typescript-eslint/eslint-plugin": "^7.0.0",
    "@typescript-eslint/parser": "^7.0.0",
    "eslint": "^8.56.0",
    "tsx": "^4.0.0",
    "typescript": "^5.0.0"
  },
  "dependencies": {
    "chalk": "^5.3.0",
    "inquirer": "^9.2.0",
    "string-width": "^8.1.0",
    "yargs": "^17.7.0"
  },
  "engines": {
    "node": ">=16.0.0",
    "pnpm": ">=8.0.0"
  },
  "packageManager": "pnpm@8.15.0",
  "files": [
    "dist/",
    "README.md"
  ]
}