@rexdug7005/nvidia-llama4
Version:
Integración de NVIDIA Llama4 con LangChain.js
107 lines (106 loc) • 3.37 kB
JSON
{
"name": "@rexdug7005/nvidia-llama4",
"version": "0.3.2",
"description": "Integración de NVIDIA Llama4 con LangChain.js",
"type": "module",
"engines": {
"node": ">=18"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/",
"index.cjs",
"index.js",
"index.d.ts",
"index.d.cts",
"LICENSE"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Alex66688/nvidia-llama4.git"
},
"homepage": "https://github.com/Alex66688/nvidia-llama4",
"scripts": {
"build": "rimraf dist && npm run build:esm && npm run build:cjs && npm run create-index-files && npm run format",
"build:esm": "tsc --declaration --outDir dist/ --project tsconfig.build.json",
"build:cjs": "rollup -c",
"create-index-files": "node scripts/create-index-files.js",
"build:watch": "tsc --declaration --outDir dist/ --watch --project tsconfig.build.json",
"lint:eslint": "eslint --cache --ext .ts src/",
"lint:test": "eslint --cache --ext .ts --config .eslintrc.cjs src/tests/",
"lint:dpdm": "dpdm --exit-code circular:1 --no-warning --no-tree src/*.ts src/**/*.ts",
"lint": "npm run lint:eslint && npm run lint:test && npm run lint:dpdm",
"lint:fix": "npm run lint:eslint --fix && npm run lint:dpdm",
"format": "prettier --write \"src/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\"",
"clean": "rimraf .turbo dist/",
"test": "jest --testPathIgnorePatterns=\\.int\\.test.ts --testTimeout 30000 --maxWorkers=50%",
"test:watch": "jest --watch --testPathIgnorePatterns=\\.int\\.test.ts",
"test:single": "jest --config jest.config.cjs --testTimeout 100000",
"test:int": "jest --testPathPattern=\\.int\\.test.ts --testTimeout 100000 --maxWorkers=50%",
"prepare": "npm run build",
"release": "release-it"
},
"keywords": [
"langchain",
"nvidia",
"llama4",
"ai",
"llm"
],
"author": "rexdug7005",
"license": "MIT",
"dependencies": {
"axios": "^1.6.0",
"uuid": "^10.0.0",
"zod": "^3.24.1",
"zod-to-json-schema": "^3.24.1"
},
"peerDependencies": {
"@langchain/core": ">=0.3.0 <0.4.0"
},
"devDependencies": {
"@jest/globals": "^29.5.0",
"@langchain/core": "^0.3.0",
"@swc/core": "^1.3.90",
"@swc/jest": "^0.2.29",
"@tsconfig/recommended": "^1.0.3",
"@types/jest": "^29.5.0",
"@types/node": "^18.19.0",
"@types/uuid": "^9.0.7",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"@typescript-eslint/parser": "^6.12.0",
"dotenv": "^16.3.1",
"dpdm": "^3.12.0",
"eslint": "^8.33.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-no-instanceof": "^1.0.1",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.5.0",
"jest-environment-node": "^29.6.4",
"prettier": "^2.8.3",
"release-it": "^18.1.2",
"rimraf": "^3.0.2",
"rollup": "^4.5.2",
"ts-jest": "^29.1.0",
"typescript": "^5.2.2"
},
"publishConfig": {
"access": "public"
},
"exports": {
".": {
"types": {
"import": "./index.d.ts",
"require": "./index.d.cts",
"default": "./index.d.ts"
},
"import": "./index.js",
"require": "./index.cjs"
},
"./package.json": "./package.json"
}
}