refactor: bitmapper core as node package

This commit is contained in:
ful1e5 2021-11-21 16:00:16 +05:30
parent 8b37211109
commit 6c10cbf2f6
12 changed files with 35 additions and 0 deletions

View file

@ -19,6 +19,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Simplified README.md (removed emojis) - Simplified README.md (removed emojis)
- sponsor with liberapay - sponsor with liberapay
- fixed text cursor state in `xterm` & `vertical-text` (increase border size) #67 - fixed text cursor state in `xterm` & `vertical-text` (increase border size) #67
- bitmapper `core` as node package
## [v1.2.2] - 31 Oct 2021 ## [v1.2.2] - 31 Oct 2021

View file

@ -0,0 +1,22 @@
{
"name": "core",
"version": "1.2.2",
"description": "Apple Cursor bitmapper's core modules",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": "Kaiz Khatri",
"license": "GPL-3.0",
"private": true,
"dependencies": {
"pixelmatch": "^5.2.1",
"pngjs": "^6.0.0",
"puppeteer": "^7.1.0"
},
"devDependencies": {
"@types/pixelmatch": "^5.2.2",
"@types/pngjs": "^6.0.0",
"@types/puppeteer": "^5.4.3",
"ts-node": "^9.1.1",
"typescript": "^4.1.5"
}
}

View file

@ -0,0 +1,12 @@
{
"extends": "../../tsconfig.json",
"compilerOptions": {
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"composite": true,
"outDir": "dist",
"rootDir": "src"
},
"include": ["src"]
}