nodejs-template / package.json
tomayac's picture
Update package.json
987fe1a verified
raw
history blame contribute delete
514 Bytes
{
"name": "nodejs-template",
"version": "0.0.1",
"description": "A template for running Node.js in a Hugging Face Space.",
"keywords": [
"Node",
"Node.js",
"Hugging Face Space"
],
"repository": {
"type": "git",
"url": "git@hf.co:spaces/tomayac/nodejs-template"
},
"license": "Apache-2.0",
"author": "Thomas Steiner (tomac@google.com)",
"type": "module",
"main": "index.js",
"scripts": {
"start": "node index.js"
},
"dependencies": {
"express": "latest"
}
}