├── .github └── workflows │ └── publish.yml ├── .gitignore ├── LICENSE ├── README.md ├── biome.json ├── documentation ├── .gitignore ├── docs │ ├── cspointscript │ │ ├── _category_.json │ │ ├── exported-classes.md │ │ ├── img │ │ │ └── output_public_fun_example.png │ │ └── public-method.md │ └── getting-started.md ├── docusaurus.config.ts ├── package-lock.json ├── package.json ├── sidebars.ts ├── src │ ├── components │ │ ├── DocsOutdatedAlert.module.css │ │ └── DocsOutdatedAlert.tsx │ ├── css │ │ └── custom.css │ └── pages │ │ ├── index.module.css │ │ └── index.tsx ├── static │ ├── .nojekyll │ └── img │ │ ├── favicon.ico │ │ ├── icon.svg │ │ └── s2ts.png └── tsconfig.json ├── packages ├── create-s2ts │ ├── LICENSE │ ├── README.md │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── index.ts │ │ └── postBuild.ts │ └── tsconfig.json └── s2ts │ ├── LICENSE │ ├── README.md │ ├── babel.config.js │ ├── package-lock.json │ ├── package.json │ ├── src │ ├── cli.ts │ ├── compiler │ │ ├── file.ts │ │ ├── publicMethods.ts │ │ ├── rollup.ts │ │ ├── transpile.ts │ │ └── version.ts │ ├── log.ts │ └── postBuild.ts │ ├── tsconfig.build-compiler.json │ ├── tsconfig.json │ └── types │ ├── cspointscript.d.ts │ └── point_script.d.ts └── scripts ├── generateInstanceDocs.ts ├── package-lock.json ├── package.json └── tsconfig.json /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peterclark1996/s2ts/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peterclark1996/s2ts/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peterclark1996/s2ts/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peterclark1996/s2ts/HEAD/README.md -------------------------------------------------------------------------------- /biome.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peterclark1996/s2ts/HEAD/biome.json -------------------------------------------------------------------------------- /documentation/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peterclark1996/s2ts/HEAD/documentation/.gitignore -------------------------------------------------------------------------------- /documentation/docs/cspointscript/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peterclark1996/s2ts/HEAD/documentation/docs/cspointscript/_category_.json -------------------------------------------------------------------------------- /documentation/docs/cspointscript/exported-classes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peterclark1996/s2ts/HEAD/documentation/docs/cspointscript/exported-classes.md -------------------------------------------------------------------------------- /documentation/docs/cspointscript/img/output_public_fun_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peterclark1996/s2ts/HEAD/documentation/docs/cspointscript/img/output_public_fun_example.png -------------------------------------------------------------------------------- /documentation/docs/cspointscript/public-method.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peterclark1996/s2ts/HEAD/documentation/docs/cspointscript/public-method.md -------------------------------------------------------------------------------- /documentation/docs/getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peterclark1996/s2ts/HEAD/documentation/docs/getting-started.md -------------------------------------------------------------------------------- /documentation/docusaurus.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peterclark1996/s2ts/HEAD/documentation/docusaurus.config.ts -------------------------------------------------------------------------------- /documentation/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peterclark1996/s2ts/HEAD/documentation/package-lock.json -------------------------------------------------------------------------------- /documentation/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peterclark1996/s2ts/HEAD/documentation/package.json -------------------------------------------------------------------------------- /documentation/sidebars.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peterclark1996/s2ts/HEAD/documentation/sidebars.ts -------------------------------------------------------------------------------- /documentation/src/components/DocsOutdatedAlert.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peterclark1996/s2ts/HEAD/documentation/src/components/DocsOutdatedAlert.module.css -------------------------------------------------------------------------------- /documentation/src/components/DocsOutdatedAlert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peterclark1996/s2ts/HEAD/documentation/src/components/DocsOutdatedAlert.tsx -------------------------------------------------------------------------------- /documentation/src/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peterclark1996/s2ts/HEAD/documentation/src/css/custom.css -------------------------------------------------------------------------------- /documentation/src/pages/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peterclark1996/s2ts/HEAD/documentation/src/pages/index.module.css -------------------------------------------------------------------------------- /documentation/src/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peterclark1996/s2ts/HEAD/documentation/src/pages/index.tsx -------------------------------------------------------------------------------- /documentation/static/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /documentation/static/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peterclark1996/s2ts/HEAD/documentation/static/img/favicon.ico -------------------------------------------------------------------------------- /documentation/static/img/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peterclark1996/s2ts/HEAD/documentation/static/img/icon.svg -------------------------------------------------------------------------------- /documentation/static/img/s2ts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peterclark1996/s2ts/HEAD/documentation/static/img/s2ts.png -------------------------------------------------------------------------------- /documentation/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peterclark1996/s2ts/HEAD/documentation/tsconfig.json -------------------------------------------------------------------------------- /packages/create-s2ts/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peterclark1996/s2ts/HEAD/packages/create-s2ts/LICENSE -------------------------------------------------------------------------------- /packages/create-s2ts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peterclark1996/s2ts/HEAD/packages/create-s2ts/README.md -------------------------------------------------------------------------------- /packages/create-s2ts/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peterclark1996/s2ts/HEAD/packages/create-s2ts/package-lock.json -------------------------------------------------------------------------------- /packages/create-s2ts/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peterclark1996/s2ts/HEAD/packages/create-s2ts/package.json -------------------------------------------------------------------------------- /packages/create-s2ts/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peterclark1996/s2ts/HEAD/packages/create-s2ts/src/index.ts -------------------------------------------------------------------------------- /packages/create-s2ts/src/postBuild.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peterclark1996/s2ts/HEAD/packages/create-s2ts/src/postBuild.ts -------------------------------------------------------------------------------- /packages/create-s2ts/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peterclark1996/s2ts/HEAD/packages/create-s2ts/tsconfig.json -------------------------------------------------------------------------------- /packages/s2ts/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peterclark1996/s2ts/HEAD/packages/s2ts/LICENSE -------------------------------------------------------------------------------- /packages/s2ts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peterclark1996/s2ts/HEAD/packages/s2ts/README.md -------------------------------------------------------------------------------- /packages/s2ts/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peterclark1996/s2ts/HEAD/packages/s2ts/babel.config.js -------------------------------------------------------------------------------- /packages/s2ts/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peterclark1996/s2ts/HEAD/packages/s2ts/package-lock.json -------------------------------------------------------------------------------- /packages/s2ts/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peterclark1996/s2ts/HEAD/packages/s2ts/package.json -------------------------------------------------------------------------------- /packages/s2ts/src/cli.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peterclark1996/s2ts/HEAD/packages/s2ts/src/cli.ts -------------------------------------------------------------------------------- /packages/s2ts/src/compiler/file.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peterclark1996/s2ts/HEAD/packages/s2ts/src/compiler/file.ts -------------------------------------------------------------------------------- /packages/s2ts/src/compiler/publicMethods.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peterclark1996/s2ts/HEAD/packages/s2ts/src/compiler/publicMethods.ts -------------------------------------------------------------------------------- /packages/s2ts/src/compiler/rollup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peterclark1996/s2ts/HEAD/packages/s2ts/src/compiler/rollup.ts -------------------------------------------------------------------------------- /packages/s2ts/src/compiler/transpile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peterclark1996/s2ts/HEAD/packages/s2ts/src/compiler/transpile.ts -------------------------------------------------------------------------------- /packages/s2ts/src/compiler/version.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peterclark1996/s2ts/HEAD/packages/s2ts/src/compiler/version.ts -------------------------------------------------------------------------------- /packages/s2ts/src/log.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peterclark1996/s2ts/HEAD/packages/s2ts/src/log.ts -------------------------------------------------------------------------------- /packages/s2ts/src/postBuild.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peterclark1996/s2ts/HEAD/packages/s2ts/src/postBuild.ts -------------------------------------------------------------------------------- /packages/s2ts/tsconfig.build-compiler.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peterclark1996/s2ts/HEAD/packages/s2ts/tsconfig.build-compiler.json -------------------------------------------------------------------------------- /packages/s2ts/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peterclark1996/s2ts/HEAD/packages/s2ts/tsconfig.json -------------------------------------------------------------------------------- /packages/s2ts/types/cspointscript.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peterclark1996/s2ts/HEAD/packages/s2ts/types/cspointscript.d.ts -------------------------------------------------------------------------------- /packages/s2ts/types/point_script.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peterclark1996/s2ts/HEAD/packages/s2ts/types/point_script.d.ts -------------------------------------------------------------------------------- /scripts/generateInstanceDocs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peterclark1996/s2ts/HEAD/scripts/generateInstanceDocs.ts -------------------------------------------------------------------------------- /scripts/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peterclark1996/s2ts/HEAD/scripts/package-lock.json -------------------------------------------------------------------------------- /scripts/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peterclark1996/s2ts/HEAD/scripts/package.json -------------------------------------------------------------------------------- /scripts/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peterclark1996/s2ts/HEAD/scripts/tsconfig.json --------------------------------------------------------------------------------