viscribe 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,66 @@
1
+ {
2
+ "name": "viscribe",
3
+ "version": "0.1.0",
4
+ "description": "OpenAI-compatible image understanding SDK for structured extraction, description, classification, VQA, and comparison.",
5
+ "type": "module",
6
+ "main": "./dist/index.cjs",
7
+ "module": "./dist/index.js",
8
+ "types": "./dist/index.d.ts",
9
+ "exports": {
10
+ ".": {
11
+ "types": "./dist/index.d.ts",
12
+ "import": "./dist/index.js",
13
+ "require": "./dist/index.cjs"
14
+ }
15
+ },
16
+ "files": [
17
+ "dist",
18
+ "assets",
19
+ "LICENSE",
20
+ "README.md"
21
+ ],
22
+ "scripts": {
23
+ "build": "tsup src/index.ts --format esm,cjs --dts --clean",
24
+ "typecheck": "tsc --noEmit",
25
+ "test": "vitest run",
26
+ "example": "tsx examples/extract.ts",
27
+ "example:describe": "tsx examples/describe.ts",
28
+ "example:classify": "tsx examples/classify.ts",
29
+ "example:ask": "tsx examples/ask.ts",
30
+ "example:compare": "tsx examples/compare.ts",
31
+ "example:client": "tsx examples/client.ts"
32
+ },
33
+ "keywords": [
34
+ "ai",
35
+ "computer-vision",
36
+ "data-extraction",
37
+ "image-extraction",
38
+ "openai",
39
+ "structured-output"
40
+ ],
41
+ "author": "Viscribe AI <contact@viscribe.ai>",
42
+ "license": "MIT",
43
+ "homepage": "https://github.com/itsperini/viscribe#readme",
44
+ "repository": {
45
+ "type": "git",
46
+ "url": "git+https://github.com/itsperini/viscribe.git",
47
+ "directory": "typescript"
48
+ },
49
+ "bugs": {
50
+ "url": "https://github.com/itsperini/viscribe/issues"
51
+ },
52
+ "engines": {
53
+ "node": ">=20"
54
+ },
55
+ "dependencies": {
56
+ "openai": "^6.10.0"
57
+ },
58
+ "devDependencies": {
59
+ "@types/node": "^24.10.1",
60
+ "dotenv": "^17.2.3",
61
+ "tsup": "^8.5.0",
62
+ "tsx": "^4.21.0",
63
+ "typescript": "^5.9.3",
64
+ "vitest": "^4.0.14"
65
+ }
66
+ }