-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.49 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.49 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
78
79
80
81
82
83
84
{
"name": "throughmark",
"version": "0.0.6",
"description": "Find and Annotate Features in Images, From Objects to Concepts",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"bin": {
"throughmark": "./dist/bin/cli.js"
},
"files": [
"dist",
"LICENSE.md",
"README.md"
],
"keywords": [
"image-analysis",
"computer-vision",
"llm",
"annotation",
"grid",
"spatial-analysis"
],
"author": "Throughmark Contributors",
"license": "SEE LICENSE IN LICENSE.md",
"repository": {
"type": "git",
"url": "git+https://github.com/throughmark/throughmark.git"
},
"bugs": {
"url": "https://github.com/throughmark/throughmark/issues"
},
"homepage": "https://github.com/throughmark/throughmark#readme",
"scripts": {
"build": "tsc",
"test": "pnpm build && vitest run",
"test:watch": "vitest",
"dev": "tsc --watch",
"start": "pnpm build && node dist/bin/cli.js ${1:-samples/misc/world.png} ${2:-openai} ${3:-gpt-4.1} ${4:-\"Find all threats\"}",
"batch": "pnpm build && node dist/bin/batch.js ${1:-samples/Toothbrush} ${2:-openai} ${3:-gpt-4.1} ${4:-\"Highlight toothbrushes\"}",
"format": "prettier --write .",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prepare": "pnpm build",
"prepublishOnly": "pnpm test && pnpm lint",
"release": "pnpm build && git checkout master && git merge develop && npm publish --access public && git tag v$(node -p 'require(\"./package.json\").version') && git push origin master && git push origin v$(node -p 'require(\"./package.json\").version') && gh release create v$(node -p 'require(\"./package.json\").version') && git checkout develop"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.39.0",
"chalk": "^5.4.1",
"csv-parse": "^5.6.0",
"dotenv": "^16.5.0",
"openai": "^4.95.1",
"sharp": "^0.34.1"
},
"devDependencies": {
"@types/node": "^22.14.1",
"@typescript-eslint/eslint-plugin": "^8.30.1",
"@typescript-eslint/parser": "^8.30.1",
"eslint": "^9.25.0",
"eslint-config-prettier": "^10.1.2",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.6",
"jiti": "^2.4.2",
"prettier": "^3.5.3",
"typescript": "^5.8.3",
"vitest": "^3.1.1"
},
"engines": {
"node": ">=18.0.0"
},
"pnpm": {
"ignoredBuiltDependencies": [
"esbuild",
"sharp"
]
}
}