├── CHANGELOG.md ├── LICENSE ├── README.md ├── bin ├── build └── release ├── eslint.config.js ├── package.json ├── src ├── cli.js └── index.js ├── tsconfig.json └── types └── index.d.ts /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caseywebdev/watchy/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caseywebdev/watchy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caseywebdev/watchy/HEAD/README.md -------------------------------------------------------------------------------- /bin/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caseywebdev/watchy/HEAD/bin/build -------------------------------------------------------------------------------- /bin/release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caseywebdev/watchy/HEAD/bin/release -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caseywebdev/watchy/HEAD/eslint.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caseywebdev/watchy/HEAD/package.json -------------------------------------------------------------------------------- /src/cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caseywebdev/watchy/HEAD/src/cli.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caseywebdev/watchy/HEAD/src/index.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caseywebdev/watchy/HEAD/tsconfig.json -------------------------------------------------------------------------------- /types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caseywebdev/watchy/HEAD/types/index.d.ts --------------------------------------------------------------------------------