imajin/@packages/@ts/vision/core/package.json

27 lines
596 B
JSON
Raw Normal View History

{
"name": "@imajin/vision-core",
"version": "0.1.1",
"description": "Shared vision algorithms — head pose, blink detection, face landmarks, anti-spoofing",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"sideEffects": false,
"files": ["dist"],
"scripts": {
"build": "tsup",
"typecheck": "tsc --noEmit",
"clean": "rm -rf dist"
},
"license": "MIT",
"devDependencies": {
"tsup": "^8.3.6",
"typescript": "^5.7.3"
}
}