├── .gitattributes ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .node-version ├── .vscode └── settings.json ├── README.md ├── eslint.config.js ├── eslint.config.mjs ├── generated-data.js ├── index.d.ts ├── index.js ├── package.json ├── renovate.json ├── script └── generate.mjs └── test └── index.js /.gitattributes: -------------------------------------------------------------------------------- 1 | * text eol=lf 2 | -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teppeis/easta/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | *.min.js 3 | -------------------------------------------------------------------------------- /.node-version: -------------------------------------------------------------------------------- 1 | 22.15.0 2 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "eslint.experimental.useFlatConfig": true 3 | } 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teppeis/easta/HEAD/README.md -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teppeis/easta/HEAD/eslint.config.js -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teppeis/easta/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /generated-data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teppeis/easta/HEAD/generated-data.js -------------------------------------------------------------------------------- /index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teppeis/easta/HEAD/index.d.ts -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teppeis/easta/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teppeis/easta/HEAD/package.json -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": ["github>teppeis/renovate-config"] 3 | } 4 | -------------------------------------------------------------------------------- /script/generate.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teppeis/easta/HEAD/script/generate.mjs -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teppeis/easta/HEAD/test/index.js --------------------------------------------------------------------------------