piston/api/package.json

31 lines
874 B
JSON
Raw Normal View History

2021-02-20 15:13:56 +01:00
{
2021-05-08 02:30:40 +02:00
"name": "piston-api",
2023-03-02 00:25:08 +01:00
"version": "3.2.0",
2021-05-08 02:30:40 +02:00
"description": "API for piston - a high performance code execution engine",
2023-03-09 04:22:35 +01:00
"module": "./dist/index.js",
2023-03-07 00:02:16 +01:00
"type": "module",
2023-03-02 00:25:08 +01:00
"scripts": {
2023-03-09 04:22:35 +01:00
"api": "node ./dist/index.js",
2023-03-09 02:59:43 +01:00
"build": "npx tsc"
2023-03-02 00:25:08 +01:00
},
2021-05-08 02:30:40 +02:00
"dependencies": {
"body-parser": "^1.19.0",
"chownr": "^2.0.0",
"express": "^4.17.3",
"express-ws": "^5.0.2",
2021-05-08 02:30:40 +02:00
"is-docker": "^2.1.1",
"logplease": "github:Endercheif/logplease#feature/quality",
"node-fetch": "^2.6.7",
2021-05-08 02:30:40 +02:00
"semver": "^7.3.4",
"uuid": "^8.3.2",
"waitpid": "git+https://github.com/HexF/node-waitpid.git"
},
"license": "MIT",
"devDependencies": {
2023-03-09 02:59:43 +01:00
"@types/express": "^4.17.17",
"@types/node-fetch": "^2.6.2",
2023-03-09 04:18:34 +01:00
"ts-node": "^10.9.1",
2023-03-09 02:59:43 +01:00
"typescript": "^4.9.5"
}
2021-02-20 15:13:56 +01:00
}