ai-app-factory / package.json
jbilcke-hf's picture
jbilcke-hf HF staff
rebranding + use Node 20
8f6e50c
raw
history blame contribute delete
No virus
785 Bytes
{
"name": "ai-app-factory",
"version": "1.0.0",
"description": "Hugging Face Space templates on steroids!",
"main": "src/index.mts",
"scripts": {
"start": "node --loader ts-node/esm src/index.mts",
"test": "node --loader ts-node/esm src/test.mts",
"docker": "npm run docker:build && npm run docker:run",
"docker:build": "docker build -t space-factory-llama2 .",
"docker:run": "docker run -it -p 7860:7860 space-factory-llama2"
},
"author": "Julian Bilcke <[email protected]>",
"license": "Apache License",
"dependencies": {
"@huggingface/hub": "^0.8.3",
"@huggingface/inference": "^2.6.1",
"@types/express": "^4.17.17",
"express": "^4.18.2",
"slugify": "^1.6.6",
"ts-node": "^10.9.1",
"uuid": "^9.0.0"
}
}