├── .github └── workflows │ └── deploy.yml ├── .gitignore ├── .vscode ├── extensions.json └── settings.json ├── .zed └── settings.json ├── LICENSE ├── README.md ├── dprint.json ├── env.d.ts ├── eslint.config.mjs ├── package.json ├── src ├── index.ts ├── patches.ts ├── settings.ts ├── types │ ├── index.ts │ └── require.ts └── webpackModules │ └── niteskyInit.ts ├── tsconfig.json └── webpackTools.runtime.js /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotNite/nitesky/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | dist/ 3 | *.user.js 4 | eslint_report.json 5 | -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotNite/nitesky/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotNite/nitesky/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.zed/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotNite/nitesky/HEAD/.zed/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotNite/nitesky/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotNite/nitesky/HEAD/README.md -------------------------------------------------------------------------------- /dprint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotNite/nitesky/HEAD/dprint.json -------------------------------------------------------------------------------- /env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotNite/nitesky/HEAD/env.d.ts -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotNite/nitesky/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotNite/nitesky/HEAD/package.json -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotNite/nitesky/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/patches.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotNite/nitesky/HEAD/src/patches.ts -------------------------------------------------------------------------------- /src/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotNite/nitesky/HEAD/src/settings.ts -------------------------------------------------------------------------------- /src/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotNite/nitesky/HEAD/src/types/index.ts -------------------------------------------------------------------------------- /src/types/require.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotNite/nitesky/HEAD/src/types/require.ts -------------------------------------------------------------------------------- /src/webpackModules/niteskyInit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotNite/nitesky/HEAD/src/webpackModules/niteskyInit.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotNite/nitesky/HEAD/tsconfig.json -------------------------------------------------------------------------------- /webpackTools.runtime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotNite/nitesky/HEAD/webpackTools.runtime.js --------------------------------------------------------------------------------