├── .gitignore ├── .npmignore ├── README.md ├── bin └── p8 ├── examples └── demo │ ├── README.md │ ├── main.lua │ └── p8.json ├── getting-started.md ├── p8.json.md ├── package.json ├── src ├── cmds │ ├── add.ts │ ├── build.ts │ ├── init.ts │ ├── install.ts │ └── run.ts ├── common.ts └── index.ts └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozanza/p8/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | *.test 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozanza/p8/HEAD/README.md -------------------------------------------------------------------------------- /bin/p8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozanza/p8/HEAD/bin/p8 -------------------------------------------------------------------------------- /examples/demo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozanza/p8/HEAD/examples/demo/README.md -------------------------------------------------------------------------------- /examples/demo/main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozanza/p8/HEAD/examples/demo/main.lua -------------------------------------------------------------------------------- /examples/demo/p8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozanza/p8/HEAD/examples/demo/p8.json -------------------------------------------------------------------------------- /getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozanza/p8/HEAD/getting-started.md -------------------------------------------------------------------------------- /p8.json.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozanza/p8/HEAD/p8.json.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozanza/p8/HEAD/package.json -------------------------------------------------------------------------------- /src/cmds/add.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozanza/p8/HEAD/src/cmds/add.ts -------------------------------------------------------------------------------- /src/cmds/build.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozanza/p8/HEAD/src/cmds/build.ts -------------------------------------------------------------------------------- /src/cmds/init.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozanza/p8/HEAD/src/cmds/init.ts -------------------------------------------------------------------------------- /src/cmds/install.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozanza/p8/HEAD/src/cmds/install.ts -------------------------------------------------------------------------------- /src/cmds/run.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozanza/p8/HEAD/src/cmds/run.ts -------------------------------------------------------------------------------- /src/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozanza/p8/HEAD/src/common.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozanza/p8/HEAD/src/index.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jozanza/p8/HEAD/tsconfig.json --------------------------------------------------------------------------------