├── .github └── workflows │ ├── build_release.yml │ ├── check_fix_push.yml │ └── pull_request_check.yml ├── .gitignore ├── .npmrc ├── .prettierignore ├── .prettierrc.mjs ├── README.md ├── dist ├── CHANGELOG.md ├── README.md ├── gkd.json5 └── gkd.version.json5 ├── eslint.config.mjs ├── package.json ├── pnpm-lock.yaml ├── pnpm-workspace.yaml ├── scripts ├── build.ts └── check.ts ├── src ├── apps │ ├── com.tencent.mm.ts │ ├── com.tencent.mobileqq.ts │ └── li.songe.gkd.ts ├── categories.ts ├── globalGroups.ts └── subscription.ts └── tsconfig.json /.github/workflows/build_release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gkd-kit/subscription-template/HEAD/.github/workflows/build_release.yml -------------------------------------------------------------------------------- /.github/workflows/check_fix_push.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gkd-kit/subscription-template/HEAD/.github/workflows/check_fix_push.yml -------------------------------------------------------------------------------- /.github/workflows/pull_request_check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gkd-kit/subscription-template/HEAD/.github/workflows/pull_request_check.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gkd-kit/subscription-template/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | package-manager-strict=false 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gkd-kit/subscription-template/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gkd-kit/subscription-template/HEAD/.prettierrc.mjs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gkd-kit/subscription-template/HEAD/README.md -------------------------------------------------------------------------------- /dist/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gkd-kit/subscription-template/HEAD/dist/CHANGELOG.md -------------------------------------------------------------------------------- /dist/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gkd-kit/subscription-template/HEAD/dist/README.md -------------------------------------------------------------------------------- /dist/gkd.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gkd-kit/subscription-template/HEAD/dist/gkd.json5 -------------------------------------------------------------------------------- /dist/gkd.version.json5: -------------------------------------------------------------------------------- 1 | {id:233,version:0} -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gkd-kit/subscription-template/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gkd-kit/subscription-template/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gkd-kit/subscription-template/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /pnpm-workspace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gkd-kit/subscription-template/HEAD/pnpm-workspace.yaml -------------------------------------------------------------------------------- /scripts/build.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gkd-kit/subscription-template/HEAD/scripts/build.ts -------------------------------------------------------------------------------- /scripts/check.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gkd-kit/subscription-template/HEAD/scripts/check.ts -------------------------------------------------------------------------------- /src/apps/com.tencent.mm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gkd-kit/subscription-template/HEAD/src/apps/com.tencent.mm.ts -------------------------------------------------------------------------------- /src/apps/com.tencent.mobileqq.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gkd-kit/subscription-template/HEAD/src/apps/com.tencent.mobileqq.ts -------------------------------------------------------------------------------- /src/apps/li.songe.gkd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gkd-kit/subscription-template/HEAD/src/apps/li.songe.gkd.ts -------------------------------------------------------------------------------- /src/categories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gkd-kit/subscription-template/HEAD/src/categories.ts -------------------------------------------------------------------------------- /src/globalGroups.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gkd-kit/subscription-template/HEAD/src/globalGroups.ts -------------------------------------------------------------------------------- /src/subscription.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gkd-kit/subscription-template/HEAD/src/subscription.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gkd-kit/subscription-template/HEAD/tsconfig.json --------------------------------------------------------------------------------