-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 1.84 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 1.84 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "@decartai/tanstack-ai-adapter",
"version": "0.0.2",
"type": "module",
"description": "Decart adapter for TanStack AI - image and video generation",
"license": "MIT",
"private": false,
"sideEffects": false,
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist",
"src"
],
"scripts": {
"build": "pnpm clean && tsup --tsconfig tsconfig.build.json",
"clean": "rm -rf dist *.tsbuildinfo",
"typecheck": "tsc --noEmit",
"format": "biome format --write",
"format:check": "biome check",
"lint": "biome lint",
"test": "vitest --run",
"test:watch": "vitest",
"release": "bumpp",
"example:image-generation": "tsx examples/image-generation.ts",
"example:video-generation": "tsx examples/video-generation.ts",
"example:web": "pnpm --filter decart-tanstack-ai-web-example dev"
},
"exports": {
"./package.json": "./package.json",
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"dependencies": {
"@decartai/sdk": "^0.0.27"
},
"devDependencies": {
"@tanstack/ai": "^0.2.0",
"@types/node": "20.17.24",
"biome": "^0.3.3",
"bumpp": "^10.3.1",
"msw": "^2.11.6",
"tsup": "^8",
"tsx": "^4.20.6",
"typescript": "5.8.3",
"vitest": "^4.0.7"
},
"peerDependencies": {
"@tanstack/ai": "^0.2.0"
},
"engines": {
"node": ">=18"
},
"publishConfig": {
"access": "public"
},
"homepage": "https://decart.ai",
"repository": {
"type": "git",
"url": "https://github.com/DecartAI/tanstack-ai-adapter"
},
"bugs": {
"url": "https://github.com/DecartAI/tanstack-ai-adapter/issues"
},
"keywords": [
"ai",
"decart",
"tanstack",
"image-generation",
"video-generation",
"lucy"
]
}