├── .editorconfig ├── .github └── workflows │ ├── ci.yml │ └── release.yml ├── .gitignore ├── .npmrc ├── .nvmrc ├── LICENSE ├── README.md ├── eslint.config.js ├── package.json ├── packages └── core │ ├── README.md │ ├── build.config.ts │ ├── package.json │ └── src │ ├── config.ts │ ├── helpers.ts │ ├── index.ts │ ├── types.ts │ └── watermark.ts ├── playground ├── README.md ├── index.html ├── package.json ├── public │ └── vite.svg ├── src │ ├── App.vue │ └── main.ts ├── tsconfig.json ├── tsconfig.node.json ├── types │ ├── shime-vue.d.ts │ └── vite-env.d.ts └── vite.config.ts ├── pnpm-lock.yaml ├── pnpm-workspace.yaml ├── readme └── README.zh-CN.md ├── test └── index.test.ts └── tsconfig.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohe0601/watermark-lite/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohe0601/watermark-lite/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohe0601/watermark-lite/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohe0601/watermark-lite/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohe0601/watermark-lite/HEAD/.npmrc -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 20 -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohe0601/watermark-lite/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohe0601/watermark-lite/HEAD/README.md -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohe0601/watermark-lite/HEAD/eslint.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohe0601/watermark-lite/HEAD/package.json -------------------------------------------------------------------------------- /packages/core/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohe0601/watermark-lite/HEAD/packages/core/README.md -------------------------------------------------------------------------------- /packages/core/build.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohe0601/watermark-lite/HEAD/packages/core/build.config.ts -------------------------------------------------------------------------------- /packages/core/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohe0601/watermark-lite/HEAD/packages/core/package.json -------------------------------------------------------------------------------- /packages/core/src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohe0601/watermark-lite/HEAD/packages/core/src/config.ts -------------------------------------------------------------------------------- /packages/core/src/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohe0601/watermark-lite/HEAD/packages/core/src/helpers.ts -------------------------------------------------------------------------------- /packages/core/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohe0601/watermark-lite/HEAD/packages/core/src/index.ts -------------------------------------------------------------------------------- /packages/core/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohe0601/watermark-lite/HEAD/packages/core/src/types.ts -------------------------------------------------------------------------------- /packages/core/src/watermark.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohe0601/watermark-lite/HEAD/packages/core/src/watermark.ts -------------------------------------------------------------------------------- /playground/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohe0601/watermark-lite/HEAD/playground/README.md -------------------------------------------------------------------------------- /playground/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohe0601/watermark-lite/HEAD/playground/index.html -------------------------------------------------------------------------------- /playground/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohe0601/watermark-lite/HEAD/playground/package.json -------------------------------------------------------------------------------- /playground/public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohe0601/watermark-lite/HEAD/playground/public/vite.svg -------------------------------------------------------------------------------- /playground/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohe0601/watermark-lite/HEAD/playground/src/App.vue -------------------------------------------------------------------------------- /playground/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohe0601/watermark-lite/HEAD/playground/src/main.ts -------------------------------------------------------------------------------- /playground/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohe0601/watermark-lite/HEAD/playground/tsconfig.json -------------------------------------------------------------------------------- /playground/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohe0601/watermark-lite/HEAD/playground/tsconfig.node.json -------------------------------------------------------------------------------- /playground/types/shime-vue.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohe0601/watermark-lite/HEAD/playground/types/shime-vue.d.ts -------------------------------------------------------------------------------- /playground/types/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// -------------------------------------------------------------------------------- /playground/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohe0601/watermark-lite/HEAD/playground/vite.config.ts -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohe0601/watermark-lite/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /pnpm-workspace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohe0601/watermark-lite/HEAD/pnpm-workspace.yaml -------------------------------------------------------------------------------- /readme/README.zh-CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohe0601/watermark-lite/HEAD/readme/README.zh-CN.md -------------------------------------------------------------------------------- /test/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohe0601/watermark-lite/HEAD/test/index.test.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohe0601/watermark-lite/HEAD/tsconfig.json --------------------------------------------------------------------------------