mirror of
https://gitea.com/Lydanne/issues-helper.git
synced 2025-08-19 10:15:59 +08:00

* chore: improved docs * chore: format code * deps: upgrade dumi 2.1.21 fix https://github.com/actions-cool/issues-helper/issues/153 * chore: update style * docs: update docs
64 lines
2.1 KiB
JSON
64 lines
2.1 KiB
JSON
{
|
|
"private": true,
|
|
"description": "A GitHub Action easily helps you automatically manage issues.",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/actions-cool/issues-helper.git",
|
|
"branch": "main"
|
|
},
|
|
"license": "MIT",
|
|
"author": "xrkffgg",
|
|
"scripts": {
|
|
"dev": "APP_ROOT=web dumi dev",
|
|
"start": "APP_ROOT=web dumi dev",
|
|
"docs:build": "APP_ROOT=web dumi build",
|
|
"docs-dev:build": "APP_ROOT=web UMI_ENV=dev dumi build",
|
|
"docs:deploy": "gh-pages -d docs-dist",
|
|
"docs:preview": "PREVIEW=true npm run docs:build",
|
|
"gh-pages": "npm run docs:build && npm run docs:deploy",
|
|
"format": "prettier --write **/*.ts **/*/*.ts",
|
|
"format-check": "prettier --check **/*.ts **/*/*.ts",
|
|
"lint": "eslint src/*.ts src/*/*.ts",
|
|
"lint-fix": "eslint src/*.ts src/*/*.ts --fix",
|
|
"lint-up": "npm run format && npm run lint-fix",
|
|
"lint-all": "npm run format-check && npm run lint",
|
|
"check-commit": "node ./scripts/check-commit.js",
|
|
"tag": "node ./scripts/tag.js",
|
|
"release": "node ./scripts/release",
|
|
"test": "father test",
|
|
"package": "ncc build src/main.ts -o dist",
|
|
"users": "node ./scripts/update-users.js",
|
|
"version": "node ./scripts/update-version.js",
|
|
"pub": "sh -e ./scripts/pub.sh",
|
|
"all": "npm run lint-all && npm run test && npm run package"
|
|
},
|
|
"dependencies": {
|
|
"@actions/core": "^1.10.0",
|
|
"@actions/github": "^4.0.0",
|
|
"@octokit/rest": "^18.0.12",
|
|
"actions-util": "^1.1.3",
|
|
"dayjs": "^1.9.7",
|
|
"lodash": "^4.17.20"
|
|
},
|
|
"devDependencies": {
|
|
"@trivago/prettier-plugin-sort-imports": "^2.0.4",
|
|
"@types/lodash": "^4.14.175",
|
|
"@typescript-eslint/parser": "^4.15.2",
|
|
"@umijs/fabric": "^2.5.6",
|
|
"@vercel/ncc": "0.34.0",
|
|
"chalk": "^4.1.2",
|
|
"common-tags": "^1.8.2",
|
|
"dumi": "^2.1.21",
|
|
"eslint": "^7.18.0",
|
|
"eslint-plugin-github": "^4.1.1",
|
|
"eslint-plugin-simple-import-sort": "^7.0.0",
|
|
"father": "^2.30.7",
|
|
"gh-pages": "^3.1.0",
|
|
"new-github-release-url": "^1.0.0",
|
|
"open": "^7.3.0",
|
|
"prettier": "^2.2.1",
|
|
"simple-git": "^2.46.0",
|
|
"typescript": "^4.1.3"
|
|
}
|
|
}
|