Init bitmapper

This commit is contained in:
ful1e5
2021-04-17 16:28:01 +05:30
parent d459be5e53
commit b93063b2b1
4 changed files with 1238 additions and 0 deletions
+26
View File
@@ -0,0 +1,26 @@
{
"name": "breezex-bitmapper",
"version": "1.0.0",
"description": "",
"main": "index.js",
"repository": "git@github.com:ful1e5/BreezeX_Cursor.git",
"author": "Kaiz Khatri",
"license": "GPL-3.0",
"private": true,
"scripts": {
"render": "npx ts-node src/index.ts"
},
"devDependencies": {
"@types/pixelmatch": "^5.2.2",
"@types/pngjs": "^3.4.2",
"@types/puppeteer": "^5.4.2",
"nodemon": "^2.0.7",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
},
"dependencies": {
"pixelmatch": "^5.2.1",
"pngjs": "^6.0.0",
"puppeteer": "^5.5.0"
}
}
+5
View File
@@ -0,0 +1,5 @@
const main = async () => {
console.log('BreezeX Cursor rendering..')
};
main();
+12
View File
@@ -0,0 +1,12 @@
{
"compilerOptions": {
"strict": true,
"noUnusedLocals": true,
"strictNullChecks": true,
"esModuleInterop": true,
"target": "ES2015",
"module": "commonjs",
"lib": ["es2015", "dom"],
"noUnusedParameters": true
}
}
+1195
View File
File diff suppressed because it is too large Load Diff