├── .gitignore ├── .npmrc ├── LICENSE ├── README.md ├── data ├── artist_style.csv ├── magics │ ├── Chinese.txt │ ├── common_magic.txt │ ├── dark_magics.txt │ └── from_web.txt ├── split │ ├── bigger_0.csv │ ├── bigger_1.csv │ ├── bigger_2.csv │ ├── bigger_3.csv │ ├── bigger_4.csv │ └── small.csv ├── swearList.csv └── tags.csv ├── index.html ├── package.json ├── pnpm-lock.yaml ├── src ├── CSVToJSON.mjs ├── merge.mjs ├── refreshJSDelivr.mjs ├── splitTagsToSmaller.mjs └── swearFilter.mjs └── tests └── index.mjs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/tag-collection/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/tag-collection/HEAD/.npmrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/tag-collection/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/tag-collection/HEAD/README.md -------------------------------------------------------------------------------- /data/artist_style.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/tag-collection/HEAD/data/artist_style.csv -------------------------------------------------------------------------------- /data/magics/Chinese.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/tag-collection/HEAD/data/magics/Chinese.txt -------------------------------------------------------------------------------- /data/magics/common_magic.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/tag-collection/HEAD/data/magics/common_magic.txt -------------------------------------------------------------------------------- /data/magics/dark_magics.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/tag-collection/HEAD/data/magics/dark_magics.txt -------------------------------------------------------------------------------- /data/magics/from_web.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/tag-collection/HEAD/data/magics/from_web.txt -------------------------------------------------------------------------------- /data/split/bigger_0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/tag-collection/HEAD/data/split/bigger_0.csv -------------------------------------------------------------------------------- /data/split/bigger_1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/tag-collection/HEAD/data/split/bigger_1.csv -------------------------------------------------------------------------------- /data/split/bigger_2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/tag-collection/HEAD/data/split/bigger_2.csv -------------------------------------------------------------------------------- /data/split/bigger_3.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/tag-collection/HEAD/data/split/bigger_3.csv -------------------------------------------------------------------------------- /data/split/bigger_4.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/tag-collection/HEAD/data/split/bigger_4.csv -------------------------------------------------------------------------------- /data/split/small.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/tag-collection/HEAD/data/split/small.csv -------------------------------------------------------------------------------- /data/swearList.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/tag-collection/HEAD/data/swearList.csv -------------------------------------------------------------------------------- /data/tags.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/tag-collection/HEAD/data/tags.csv -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/tag-collection/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/tag-collection/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/tag-collection/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /src/CSVToJSON.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/tag-collection/HEAD/src/CSVToJSON.mjs -------------------------------------------------------------------------------- /src/merge.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/tag-collection/HEAD/src/merge.mjs -------------------------------------------------------------------------------- /src/refreshJSDelivr.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/tag-collection/HEAD/src/refreshJSDelivr.mjs -------------------------------------------------------------------------------- /src/splitTagsToSmaller.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/tag-collection/HEAD/src/splitTagsToSmaller.mjs -------------------------------------------------------------------------------- /src/swearFilter.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/tag-collection/HEAD/src/swearFilter.mjs -------------------------------------------------------------------------------- /tests/index.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonghaYao/tag-collection/HEAD/tests/index.mjs --------------------------------------------------------------------------------