27 lines
596 B
JSON
27 lines
596 B
JSON
|
|
{
|
||
|
|
"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"
|
||
|
|
}
|
||
|
|
}
|