@huggingface/tasks
Advanced tools
Comparing version 0.0.2 to 0.0.3
{ | ||
"name": "@huggingface/tasks", | ||
"version": "0.0.2", | ||
"version": "0.0.3", | ||
"type": "module", | ||
"description": "A library of tasks for the Hugging Face Hub", | ||
"main": "./dist/index.js", | ||
"module": "./dist/index.mjs", | ||
"main": "./dist/index.cjs", | ||
"module": "./dist/index.js", | ||
"types": "./dist/index.d.ts", | ||
@@ -12,12 +12,11 @@ "exports": { | ||
"types": "./dist/index.d.ts", | ||
"require": "./dist/index.js", | ||
"import": "./dist/index.mjs" | ||
"require": "./dist/index.cjs", | ||
"import": "./dist/index.js" | ||
} | ||
}, | ||
"scripts": { | ||
"prepublishOnly": "npm run build", | ||
"scripts": { | ||
"prepublishOnly": "npm run build", | ||
"build": "tsup src/index.ts --format cjs,esm --clean --dts", | ||
"test": "vitest run", | ||
"type-check": "tsc" | ||
}, | ||
}, | ||
"source": "src/index.ts", | ||
@@ -33,5 +32,5 @@ "files": [ | ||
}, | ||
"publishConfig": { | ||
"publishConfig": { | ||
"access": "public" | ||
} | ||
} |
export type { TaskData, TaskDemo, TaskDemoEntry, ExampleRepo } from "./Types"; | ||
export { TASKS_DATA } from "./tasksData"; | ||
export { TASKS_DATA } from "./tasksData"; |
Sorry, the diff of this file is not supported yet
8900
8394169