-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.18 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "pixteroid",
"displayName": "Pixteroid",
"version": "1.0.3",
"description": "Pixteroid is a Node.js API designed for efficient image upscaling and restoration, powered by AI and utilizing the NCNN framework. It employs Real-ESRGAN and ESRGAN model weights to upscale and restore images, providing three distinct levels of detail and size customization to suit various needs.",
"main": "./dist/pixteroid.js",
"exports": {
"import": "./dist/pixteroid.js",
"require": "./dist/pixteroid.js",
"types": "./dist/types/pixteroid.d.ts"
},
"files": [
"dist"
],
"directories": {
"lib": "./dist/lib"
},
"preferGlobal": true,
"bin": {
"pixteroid": "./dist/bin/setup.js"
},
"repository": "https://github.com/cresteem/pixteroid",
"bugs": {
"url": "https://github.com/cresteem/pixteroid/issues"
},
"author": "DARSAN <[email protected]>",
"maintainers": [
"DARSAN <[email protected]>"
],
"license": "Apache-2.0",
"private": false,
"scripts": {
"dev": "rimraf dist && tsc -p tscdev.json",
"dr": "cls && yarn dev && yarn rp",
"rp": "node ./dist/pixteroid.js",
"build": "cls && rimraf dist && tsc -p tsconfig.json",
"watch": "tsc --watch",
"clean": "cls && rimraf dist",
"deploy": "yarn build && yarn publish --access public && git push",
"postinstall": "node ./dist/bin/setup.js"
},
"keywords": [
"image upscaling",
"image restoration",
"ai-powered",
"node.js image api",
"ncnn framework",
"real-esrgan",
"esrgan",
"high-resolution images",
"ai image processing",
"detail enhancement",
"custom image scaling",
"open-source",
"graphic design tools",
"e-commerce tools",
"web development",
"photography enhancement",
"print media",
"ai research",
"image quality",
"scaling algorithms",
"api integration",
"performance optimization"
],
"dependencies": {
"decompress": "4.2.1"
},
"devDependencies": {
"@types/decompress": "4.2.7",
"@types/node": "22.10.1",
"glob": "11.0.0",
"rimraf": "6.0.1",
"ts-node": "10.9.2",
"typescript": "5.7.2"
},
"homepage": "https://www.npmjs.com/package/pixteroid"
}