@huggingface/dduf
Version:
Very alpha lib to check DDUF compliance
56 lines • 1.39 kB
JSON
{
"name": "@huggingface/dduf",
"packageManager": "pnpm@8.10.5",
"version": "0.0.2",
"description": "Very alpha lib to check DDUF compliance",
"repository": "https://github.com/huggingface/huggingface.js.git",
"publishConfig": {
"access": "public"
},
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"import": "./dist/index.mjs"
},
"./package.json": "./package.json"
},
"browser": {
"./dist/index.js": "./dist/browser/index.js",
"./dist/index.mjs": "./dist/browser/index.mjs"
},
"source": "index.ts",
"files": [
"src",
"dist",
"index.ts",
"tsconfig.json"
],
"keywords": [
"huggingface",
"hugging",
"face",
"dduf"
],
"author": "Hugging Face",
"license": "MIT",
"devDependencies": {
"@types/node": "^20.11.28"
},
"dependencies": {
"@huggingface/blob": "^0.0.2"
},
"scripts": {
"lint": "eslint --quiet --fix --ext .cjs,.ts .",
"lint:check": "eslint --ext .cjs,.ts .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"build": "tsup && tsc --emitDeclarationOnly --declaration",
"test": "vitest run",
"test:browser": "vitest run --browser.name=chrome --browser.headless",
"check": "tsc"
}
}