-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.33 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.33 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
{
"name": "visual-intelligence",
"version": "0.1.0",
"description": "Agentic visual asset management for AI-native creators. Auto-tag, audit, and manage images across your sites with AI-powered quality enforcement.",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"vis": "bin/vis.mjs"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "node --test src/**/*.test.mjs",
"lint": "eslint src/",
"scan": "node bin/vis.mjs scan",
"audit": "node bin/vis.mjs audit",
"report": "node bin/vis.mjs report"
},
"keywords": [
"visual-assets",
"image-management",
"dam",
"digital-asset-management",
"ai-images",
"image-audit",
"brand-consistency",
"visual-intelligence",
"creator-tools",
"agentic",
"next-js",
"vercel"
],
"author": {
"name": "Frank Riemer",
"url": "https://frankx.ai"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/frankxai/visual-intelligence"
},
"homepage": "https://frankx.ai/products/visual-intelligence",
"engines": {
"node": ">=18.0.0"
},
"dependencies": {},
"devDependencies": {
"typescript": "^5.4.0"
},
"optionalDependencies": {
"sharp": "^0.33.0"
},
"files": [
"dist/",
"bin/",
"templates/"
]
}