painbrush

1.0.21.1.0
.package.json
+.package.jsonNew file
+49
Index: package/.package.json
===================================================================
--- package/.package.json
+++ package/.package.json
@@ -0,0 +1,49 @@
+{
+  "name": "painbrush",
+  "type": "module",
+  "version": "1.0.2",
+  "description": "",
+  "homepage": "https://github.com/walaura/painbrush#readme",
+  "bugs": {
+    "url": "https://github.com/walaura/painbrush/issues"
+  },
+  "repository": {
+    "type": "git",
+    "url": "git+https://github.com/walaura/painbrush.git"
+  },
+  "license": "ISC",
+  "author": "walaura",
+  "main": "index.ts",
+  "keywords": [
+    "bmp",
+    "image"
+  ],
+  "dependencies": {
+    "chalk": "^5.6.2",
+    "commander": "^14.0.3",
+    "fast-bmp": "^4.0.1",
+    "prettier": "^3.8.3",
+    "prettier-plugin-multiline-arrays": "^4.1.7",
+    "typescript": "^6.0.3",
+    "vitest": "^4.1.5"
+  },
+  "exports": {
+    "./image": "./src/image.ts",
+    "./pixel": "./src/pixel.ts",
+    "./color": "./src/color.ts",
+    "./layer": "./src/layer.ts",
+    "./typography": "./src/typography.ts",
+    "./_DEFAULT_FONT_.pxfont": "./src/typography/poxel.pxfont"
+  },
+  "bin": {
+    "painbrush-font-packer": "./packer.ts"
+  },
+  "devDependencies": {
+    "@types/node": "^25.6.0"
+  },
+  "scripts": {
+    "test": "vitest",
+    "build": "tsc --outDir dist --project tsconfig-build.json && node prepare.ts",
+    "publish-js": "npm run build && cd ./dist && npm publish"
+  }
+}