depixel 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/README.md +61 -0
  2. package/lib.js +1861 -0
  3. package/package.json +20 -0
package/package.json ADDED
@@ -0,0 +1,20 @@
1
+ {
2
+ "name": "depixel",
3
+ "version": "0.0.1",
4
+ "description": "Depixelizing Pixel Art by Kopf-Lischinski and Felix Kreuzer for Node.js",
5
+ "main": "lib.js",
6
+ "keywords": [
7
+ "xbrz",
8
+ "pixel",
9
+ "upscale"
10
+ ],
11
+ "author": "Jimb Esser (https://github.com/Jimbly)",
12
+ "repository": {
13
+ "type": "git",
14
+ "url": "git+https://github.com/Jimbly/depixel-js.git"
15
+ },
16
+ "scripts": {
17
+ "test": "cd test && node test.js"
18
+ },
19
+ "license": "MIT"
20
+ }