fireactions/server/package.json

29 lines
713 B
JSON
Raw Permalink Normal View History

2023-06-19 21:59:44 +00:00
{
"name": "js",
"type": "module",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
2023-07-20 18:23:52 +00:00
"start": "esbuild --bundle index.js --platform=node --sourcemap > build.cjs && sudo env PATH=\"$PATH:$HOME/.local/bin\" node --enable-source-maps build.cjs"
2023-06-19 21:59:44 +00:00
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@tsconfig/node16": "^1.0.4",
"@types/gunzip-maybe": "^1.4.0",
"@types/node": "^20.2.5",
"@types/tar-stream": "^2.2.2",
2023-07-20 18:23:52 +00:00
"@types/which": "^3.0.0",
2023-06-19 21:59:44 +00:00
"undici": "^5.22.1"
},
"dependencies": {
"gunzip-maybe": "^1.4.2",
"nanodelay": "^2.0.2",
"nanoid": "^4.0.2",
2023-07-20 18:23:52 +00:00
"tar-stream": "^3.0.0",
"which": "^3.0.1"
2023-06-19 21:59:44 +00:00
}
}