-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.69 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.69 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "@picsart/ai-sdk",
"version": "3.35.4",
"type": "module",
"description": "Type-safe SDK for 100+ AI models — image, video, audio, and text generation with Picsart",
"license": "MIT",
"author": "Picsart",
"keywords": [
"ai",
"sdk",
"picsart",
"image-generation",
"video-generation",
"audio-generation",
"flux",
"kling",
"generative-ai"
],
"engines": {
"node": ">=20.0.0"
},
"files": [
"dist/",
"src/"
],
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": "./src/index.ts"
},
"scripts": {
"typecheck": "tsc --noEmit -p tsconfig.json",
"test:unit": "node --import tsx --test \"__tests__/unit/*.test.ts\"",
"test:e2e": "node --env-file-if-exists=../../.env.local --import tsx --test \"__tests__/e2e/*.e2e.ts\"",
"build:sdk": "npm run build:model-constants && npx tsup && node scripts/inline-dist-types.mjs && node scripts/write-dist-package.mjs",
"build:model-constants": "node scripts/build-model-constants.mjs",
"build:model-input-types": "tsx scripts/build-model-input-types.ts",
"bundle": "npm run build:sdk"
},
"dependencies": {
"@picsart/pa-model-pricing-sdk": "^1.4.0",
"@picsart/workflows-client": "^1.6.1",
"@picsart/workflows-types": "^1.1.89",
"fflate": "^0.8.3"
},
"devDependencies": {
"@types/node": "^22.0.0",
"tsup": "^8.5.1",
"tsx": "^4.21.0",
"typescript": "~5.8.3"
},
"homepage": "https://github.com/PicsArt/ai-sdk#readme",
"bugs": {
"url": "https://github.com/PicsArt/ai-sdk/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PicsArt/ai-sdk.git"
}
}