├── .eslintignore ├── .eslintrc.js ├── .gitignore ├── .husky └── pre-commit ├── .lintstagedrc.js ├── .prettierrc.js ├── README.md ├── README.zh.md ├── package.json ├── src ├── cli │ ├── config.ts │ ├── index.ts │ └── utils.ts └── core │ ├── db.ts │ ├── index.ts │ ├── normalizer.ts │ ├── typings.d.ts │ └── utils.ts └── tsconfig.json /.eslintignore: -------------------------------------------------------------------------------- 1 | /dist -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrisoff/ios-message-export/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrisoff/ios-message-export/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrisoff/ios-message-export/HEAD/.husky/pre-commit -------------------------------------------------------------------------------- /.lintstagedrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrisoff/ios-message-export/HEAD/.lintstagedrc.js -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrisoff/ios-message-export/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrisoff/ios-message-export/HEAD/README.md -------------------------------------------------------------------------------- /README.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrisoff/ios-message-export/HEAD/README.zh.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrisoff/ios-message-export/HEAD/package.json -------------------------------------------------------------------------------- /src/cli/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrisoff/ios-message-export/HEAD/src/cli/config.ts -------------------------------------------------------------------------------- /src/cli/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrisoff/ios-message-export/HEAD/src/cli/index.ts -------------------------------------------------------------------------------- /src/cli/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrisoff/ios-message-export/HEAD/src/cli/utils.ts -------------------------------------------------------------------------------- /src/core/db.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrisoff/ios-message-export/HEAD/src/core/db.ts -------------------------------------------------------------------------------- /src/core/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrisoff/ios-message-export/HEAD/src/core/index.ts -------------------------------------------------------------------------------- /src/core/normalizer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrisoff/ios-message-export/HEAD/src/core/normalizer.ts -------------------------------------------------------------------------------- /src/core/typings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrisoff/ios-message-export/HEAD/src/core/typings.d.ts -------------------------------------------------------------------------------- /src/core/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrisoff/ios-message-export/HEAD/src/core/utils.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harrisoff/ios-message-export/HEAD/tsconfig.json --------------------------------------------------------------------------------