├── .github └── FUNDING.yml ├── .gitignore ├── .vscode └── settings.json ├── LICENSE ├── README.md ├── eslint.config.mjs ├── example ├── index.html └── index2.html ├── package.json ├── pnpm-lock.yaml ├── rollup.config.js ├── scripts └── fetch.ts ├── src ├── constants.ts ├── functionNames.ts ├── optionNames.ts └── p5i.ts └── tsconfig.json /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: antfu 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antfu/p5i/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antfu/p5i/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antfu/p5i/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antfu/p5i/HEAD/README.md -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antfu/p5i/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /example/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antfu/p5i/HEAD/example/index.html -------------------------------------------------------------------------------- /example/index2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antfu/p5i/HEAD/example/index2.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antfu/p5i/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antfu/p5i/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antfu/p5i/HEAD/rollup.config.js -------------------------------------------------------------------------------- /scripts/fetch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antfu/p5i/HEAD/scripts/fetch.ts -------------------------------------------------------------------------------- /src/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antfu/p5i/HEAD/src/constants.ts -------------------------------------------------------------------------------- /src/functionNames.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antfu/p5i/HEAD/src/functionNames.ts -------------------------------------------------------------------------------- /src/optionNames.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antfu/p5i/HEAD/src/optionNames.ts -------------------------------------------------------------------------------- /src/p5i.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antfu/p5i/HEAD/src/p5i.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antfu/p5i/HEAD/tsconfig.json --------------------------------------------------------------------------------