-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.13 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.13 KB
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
{
"name": "pixelapi",
"version": "0.1.0",
"description": "Official JavaScript/TypeScript SDK for PixelAPI — AI image generation, background removal, upscaling, and audio generation API",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": ["dist", "README.md", "LICENSE"],
"scripts": {
"build": "tsc && tsc --module esnext --outDir dist/esm",
"prepublishOnly": "npm run build"
},
"keywords": [
"pixelapi", "ai", "image-generation", "background-removal",
"upscaling", "face-restoration", "audio-generation", "api",
"sdk", "text-to-image", "typescript"
],
"author": "PixelAPI <support@pixelapi.dev>",
"license": "MIT",
"homepage": "https://pixelapi.dev",
"repository": {
"type": "git",
"url": "https://github.com/pixelapi/pixelapi-js"
},
"bugs": {
"url": "https://github.com/pixelapi/pixelapi-js/issues"
},
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"typescript": "^5.3.0"
}
}