chore: update node_modules with new binary files and dependencies
- Add new binary files for nodemon, onnxruntime-web, and xenova/transformers - Update various JavaScript and TypeScript files in node_modules - Remove unused files and dependencies - Add new test fixtures and documentation files
This commit is contained in:
55
node_modules/@huggingface/jinja/package.json
generated
vendored
Normal file
55
node_modules/@huggingface/jinja/package.json
generated
vendored
Normal file
@@ -0,0 +1,55 @@
|
||||
{
|
||||
"name": "@huggingface/jinja",
|
||||
"packageManager": "pnpm@8.10.5",
|
||||
"version": "0.2.2",
|
||||
"description": "A minimalistic JavaScript implementation of the Jinja templating engine, specifically designed for parsing and rendering ML chat templates.",
|
||||
"repository": "https://github.com/huggingface/huggingface.js.git",
|
||||
"publishConfig": {
|
||||
"access": "public"
|
||||
},
|
||||
"type": "module",
|
||||
"main": "./dist/index.cjs",
|
||||
"module": "./dist/index.js",
|
||||
"types": "./dist/index.d.ts",
|
||||
"exports": {
|
||||
".": {
|
||||
"types": "./dist/index.d.ts",
|
||||
"require": "./dist/index.cjs",
|
||||
"import": "./dist/index.js"
|
||||
}
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=18"
|
||||
},
|
||||
"source": "src/index.ts",
|
||||
"files": [
|
||||
"src",
|
||||
"dist",
|
||||
"README.md",
|
||||
"tsconfig.json"
|
||||
],
|
||||
"keywords": [
|
||||
"huggingface",
|
||||
"jinja",
|
||||
"templates",
|
||||
"hugging",
|
||||
"face"
|
||||
],
|
||||
"author": "Hugging Face",
|
||||
"license": "MIT",
|
||||
"devDependencies": {
|
||||
"typescript": "^5.3.2",
|
||||
"@xenova/transformers": "^2.9.0",
|
||||
"@huggingface/hub": "^0.14.2"
|
||||
},
|
||||
"scripts": {
|
||||
"lint": "eslint --quiet --fix --ext .cjs,.ts .",
|
||||
"lint:check": "eslint --ext .cjs,.ts .",
|
||||
"format": "prettier --write .",
|
||||
"format:check": "prettier --check .",
|
||||
"build": "tsup src/index.ts --format cjs,esm --clean --dts",
|
||||
"test": "vitest run",
|
||||
"test:browser": "vitest run --browser.name=chrome --browser.headless",
|
||||
"check": "tsc"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user