Skip to content

Commit 6c10cbf

Browse files
committedNov 21, 2021
refactor: bitmapper core as node package
1 parent 8b37211 commit 6c10cbf

12 files changed

+35
-0
lines changed
 

‎CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1919
- Simplified README.md (removed emojis)
2020
- sponsor with liberapay
2121
- fixed text cursor state in `xterm` & `vertical-text` (increase border size) #67
22+
- bitmapper `core` as node package
2223

2324
## [v1.2.2] - 31 Oct 2021
2425

‎bitmapper/packages/core/package.json

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{
2+
"name": "core",
3+
"version": "1.2.2",
4+
"description": "Apple Cursor bitmapper's core modules",
5+
"main": "dist/index.js",
6+
"types": "dist/index.d.ts",
7+
"author": "Kaiz Khatri",
8+
"license": "GPL-3.0",
9+
"private": true,
10+
"dependencies": {
11+
"pixelmatch": "^5.2.1",
12+
"pngjs": "^6.0.0",
13+
"puppeteer": "^7.1.0"
14+
},
15+
"devDependencies": {
16+
"@types/pixelmatch": "^5.2.2",
17+
"@types/pngjs": "^6.0.0",
18+
"@types/puppeteer": "^5.4.3",
19+
"ts-node": "^9.1.1",
20+
"typescript": "^4.1.5"
21+
}
22+
}
File renamed without changes.
File renamed without changes.
File renamed without changes.

‎bitmapper/packages/core/tsconfig.json

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{
2+
"extends": "../../tsconfig.json",
3+
"compilerOptions": {
4+
"declaration": true,
5+
"declarationMap": true,
6+
"sourceMap": true,
7+
"composite": true,
8+
"outDir": "dist",
9+
"rootDir": "src"
10+
},
11+
"include": ["src"]
12+
}

0 commit comments

Comments
 (0)
Please sign in to comment.