mirror of
https://github.com/ful1e5/apple_cursor.git
synced 2025-05-20 10:15:19 -04:00
refactor: bitmapper core
as node package
This commit is contained in:
parent
8b37211109
commit
6c10cbf2f6
12 changed files with 35 additions and 0 deletions
|
@ -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
|
||||||
|
|
||||||
|
|
22
bitmapper/packages/core/package.json
Normal file
22
bitmapper/packages/core/package.json
Normal 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"
|
||||||
|
}
|
||||||
|
}
|
12
bitmapper/packages/core/tsconfig.json
Normal file
12
bitmapper/packages/core/tsconfig.json
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
{
|
||||||
|
"extends": "../../tsconfig.json",
|
||||||
|
"compilerOptions": {
|
||||||
|
"declaration": true,
|
||||||
|
"declarationMap": true,
|
||||||
|
"sourceMap": true,
|
||||||
|
"composite": true,
|
||||||
|
"outDir": "dist",
|
||||||
|
"rootDir": "src"
|
||||||
|
},
|
||||||
|
"include": ["src"]
|
||||||
|
}
|
Loading…
Add table
Add a link
Reference in a new issue