Some checks failed
Build and Release / Create Release (push) Successful in 1s
Build and Release / Build Linux (${{ matrix.arch }}) (x64) (push) Failing after 9s
CI / Lint (push) Successful in 49s
CI / Test (${{ matrix.os }}) (ubuntu-latest) (push) Successful in 1m1s
CI / Test (${{ matrix.os }}) (macos-latest) (push) Successful in 1m38s
CI / Test (${{ matrix.os }}) (windows-latest) (push) Successful in 8h3m32s
Build and Release / Build Windows (${{ matrix.arch }}) (arm64) (push) Successful in 9h4m53s
CI / Build (${{ matrix.os }}) (ubuntu-latest) (push) Successful in 1m50s
CI / Build (${{ matrix.os }}) (windows-latest) (push) Successful in 9h2m41s
Build and Release / Build Windows (${{ matrix.arch }}) (x64) (push) Successful in 8h4m19s
Build and Release / Build macOS (${{ matrix.arch }}) (arm64) (push) Failing after 8m22s
Build and Release / Build macOS (${{ matrix.arch }}) (x64) (push) Failing after 8m22s
CI / Build (${{ matrix.os }}) (macos-latest) (push) Successful in 6m45s
- Add electron-builder for AppImage, DEB, RPM creation - Update Node.js to v22 across all workflows - Add Linux packaging support to package.ts - Fix curl HTTP/2 issues with --http1.1 flag - Install libfuse2 and rpm on Linux runners
165 lines
6.8 KiB
JSON
165 lines
6.8 KiB
JSON
{
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://git.marketally.com/gitcaddy/gitcaddy.git"
|
|
},
|
|
"description": "GitCaddy - Steeped in your workflow",
|
|
"scripts": {
|
|
"cli": "ts-node app/src/cli/main.ts",
|
|
"check:eslint": "tsc -P eslint-rules/",
|
|
"test:eslint": "node script/test.mjs eslint-rules",
|
|
"test:script": "node script/test.mjs script",
|
|
"test": "node script/test.mjs",
|
|
"test:unit": "node script/test.mjs",
|
|
"test:setup": "ts-node -P script/tsconfig.json script/test-setup.ts",
|
|
"postinstall": "ts-node -P script/tsconfig.json script/post-install.ts",
|
|
"start": "cross-env NODE_ENV=development ts-node -P script/tsconfig.json script/start.ts",
|
|
"start:prod": "cross-env NODE_ENV=production ts-node -P script/tsconfig.json script/start.ts",
|
|
"compile:dev": "cross-env NODE_ENV=development TS_NODE_PROJECT=script/tsconfig.json parallel-webpack --config app/webpack.development.ts",
|
|
"compile:prod": "cross-env NODE_ENV=production TS_NODE_PROJECT=script/tsconfig.json NODE_OPTIONS='--max_old_space_size=4096' parallel-webpack --config app/webpack.production.ts",
|
|
"build:dev": "yarn compile:dev && cross-env NODE_ENV=development ts-node -P script/tsconfig.json script/build.ts",
|
|
"build:prod": "yarn compile:prod && cross-env NODE_ENV=production ts-node -P script/tsconfig.json script/build.ts",
|
|
"package": "ts-node -P script/tsconfig.json script/package.ts",
|
|
"generate-octicons": "ts-node -P script/tsconfig.json script/generate-octicons.ts",
|
|
"compile:script": "tsc -P script/tsconfig.json",
|
|
"lint": "yarn prettier && yarn lint:src",
|
|
"lint:fix": "yarn prettier --write && yarn lint:src:fix",
|
|
"markdownlint": "markdownlint **/*.{md,mdx} --config .markdownlint.js --rules node_modules/@github/markdownlint-github --ignore node_modules --ignore gemoji",
|
|
"prettier": "prettier --check \"./**/*.{ts,tsx,js,json,jsx,scss,html,yaml,yml}\"",
|
|
"lint:src": "yarn eslint-check && yarn eslint",
|
|
"lint:src:fix": "yarn eslint --fix",
|
|
"eslint": "eslint --cache --rulesdir ./eslint-rules \"./eslint-rules/**/*.js\" \"./script/**/*.ts{,x}\" \"./app/{src,typings,test}/**/*.{j,t}s{,x}\" \"./changelog.json\"",
|
|
"eslint-check": "eslint --print-config .eslintrc.* | eslint-config-prettier-check",
|
|
"validate-electron-version": "ts-node -P script/tsconfig.json script/validate-electron-version.ts",
|
|
"validate-macos-version": "ts-node -P script/tsconfig.json script/validate-macos-version.ts",
|
|
"clean-slate": "rimraf out node_modules app/node_modules && yarn",
|
|
"rebuild-hard:dev": "yarn clean-slate && yarn build:dev",
|
|
"rebuild-hard:prod": "yarn clean-slate && yarn build:prod",
|
|
"draft-release": "ts-node -P script/tsconfig.json script/draft-release/index.ts",
|
|
"draft-release:format": "prettier --check --write changelog.json app/package.json && yarn validate-changelog",
|
|
"draft-release:pr": "ts-node -P script/tsconfig.json script/draft-release/draft-pull-request.ts",
|
|
"validate-changelog": "ts-node -P script/tsconfig.json script/validate-changelog.ts"
|
|
},
|
|
"author": {
|
|
"name": "MarketAlly",
|
|
"email": "support@gitcaddy.com",
|
|
"url": "https://gitcaddy.com/"
|
|
},
|
|
"license": "MIT",
|
|
"engines": {
|
|
"node": ">= 10",
|
|
"yarn": ">= 1.9"
|
|
},
|
|
"resolutions": {
|
|
"@types/react-css-transition-replace/@types/react": "^16.14.62"
|
|
},
|
|
"dependencies": {
|
|
"@azure/storage-blob": "^12.25.0",
|
|
"@babel/core": "^7.25.2",
|
|
"@babel/plugin-transform-modules-commonjs": "^7.24.8",
|
|
"@primer/octicons": "^19.0.0",
|
|
"@types/diff": "^7.0.2",
|
|
"@typescript-eslint/eslint-plugin": "^6.13.2",
|
|
"@typescript-eslint/experimental-utils": "^5.62.0",
|
|
"@typescript-eslint/parser": "^6.13.2",
|
|
"@typescript-eslint/typescript-estree": "^6.13.2",
|
|
"awesome-node-loader": "^1.1.1",
|
|
"chalk": "^5.3.0",
|
|
"cross-env": "^7.0.3",
|
|
"css-loader": "^7.1.2",
|
|
"eslint": "^8.55.0",
|
|
"eslint-config-prettier": "^6.11.0",
|
|
"eslint-plugin-jsdoc": "^50.6.2",
|
|
"eslint-plugin-json": "^2.1.1",
|
|
"eslint-plugin-prettier": "^3.1.4",
|
|
"eslint-plugin-react": "^7.33.2",
|
|
"fake-indexeddb": "^6.0.0",
|
|
"front-matter": "^2.3.0",
|
|
"fs-extra": "^9.0.1",
|
|
"glob": "^7.1.2",
|
|
"global-jsdom": "^26.0.0",
|
|
"html-webpack-plugin": "^5.6.0",
|
|
"jsdom": "^26.0.0",
|
|
"klaw-sync": "^3.0.0",
|
|
"legal-eagle": "0.16.0",
|
|
"mini-css-extract-plugin": "^2.9.1",
|
|
"parallel-webpack": "^2.6.0",
|
|
"parse-dds": "^1.2.1",
|
|
"prettier": "^2.6.0",
|
|
"rimraf": "^6.0.1",
|
|
"sass": "^1.27.0",
|
|
"sass-loader": "^16.0.0",
|
|
"semver": "^7.6.3",
|
|
"style-loader": "^3.3.1",
|
|
"to-camel-case": "^1.0.0",
|
|
"ts-loader": "^9",
|
|
"ts-node": "^7.0.0",
|
|
"typescript": "^5.8.2",
|
|
"webpack": "^5.94.0",
|
|
"webpack-bundle-analyzer": "^4.5.0",
|
|
"webpack-dev-middleware": "^5.3.4",
|
|
"webpack-hot-middleware": "^2.25.1",
|
|
"webpack-merge": "^6.0.1"
|
|
},
|
|
"devDependencies": {
|
|
"@github/markdownlint-github": "^0.1.0",
|
|
"@types/byline": "^4.2.31",
|
|
"@types/classnames": "^2.2.2",
|
|
"@types/codemirror": "^5.60.15",
|
|
"@types/deep-equal": "^1.0.1",
|
|
"@types/dompurify": "^2.3.1",
|
|
"@types/electron-winstaller": "^4.0.0",
|
|
"@types/eslint": "^8.4.1",
|
|
"@types/estree": "^0.0.49",
|
|
"@types/event-kit": "^2.4.1",
|
|
"@types/express": "^4.11.0",
|
|
"@types/fs-extra": "^7.0.0",
|
|
"@types/fuzzaldrin-plus": "^0.0.1",
|
|
"@types/glob": "^5.0.35",
|
|
"@types/klaw-sync": "^6.0.0",
|
|
"@types/legal-eagle": "^0.15.0",
|
|
"@types/lodash": "^4.14.178",
|
|
"@types/marked": "^4.0.1",
|
|
"@types/memoize-one": "^3.1.1",
|
|
"@types/minimist": "^1.2.5",
|
|
"@types/mri": "^1.1.0",
|
|
"@types/node": "22.10.9",
|
|
"@types/parse-dds": "^1.0.3",
|
|
"@types/plist": "^3.0.2",
|
|
"@types/prettier": "^2.0.1",
|
|
"@types/react": "^16.14.62",
|
|
"@types/react-css-transition-replace": "^2.1.3",
|
|
"@types/react-dom": "^16.8.2",
|
|
"@types/react-transition-group": "^4.4.0",
|
|
"@types/react-virtualized": "^9.7.12",
|
|
"@types/request": "^2.0.9",
|
|
"@types/reserved-words": "^0.1.0",
|
|
"@types/semver": "^5.5.0",
|
|
"@types/source-map-support": "^0.5.2",
|
|
"@types/split2": "^4.2.3",
|
|
"@types/strip-ansi": "^3.0.0",
|
|
"@types/textarea-caret": "^3.0.0",
|
|
"@types/to-camel-case": "^1.0.0",
|
|
"@types/triple-beam": "^1.3.2",
|
|
"@types/ua-parser-js": "^0.7.30",
|
|
"@types/untildify": "^3.0.0",
|
|
"@types/username": "^3.0.0",
|
|
"@types/uuid": "^3.4.0",
|
|
"@types/webgl2": "^0.0.11",
|
|
"@types/webpack": "^5.28.5",
|
|
"@types/webpack-bundle-analyzer": "^4.7.0",
|
|
"@types/webpack-hot-middleware": "^2.25.9",
|
|
"diff": "^7.0.0",
|
|
"electron": "38.2.0",
|
|
"electron-builder": "^26.4.0",
|
|
"electron-packager": "^17.1.1",
|
|
"electron-winstaller": "^5.0.0",
|
|
"eslint-plugin-github": "^5.1.5",
|
|
"markdownlint-cli": "^0.32.2",
|
|
"node-test-github-reporter": "^1.2.0",
|
|
"reserved-words": "^0.1.2",
|
|
"tsconfig-paths": "^3.9.0",
|
|
"tsx": "^4.19.3"
|
|
}
|
|
}
|