solid-curl
Version:
Command line application mimicking the behaviour of cURL but authenticating using Solid-OIDC
55 lines (54 loc) • 1.42 kB
JSON
{
"name": "solid-curl",
"version": "0.1.11",
"description": "Command line application mimicking the behaviour of cURL but authenticating using Solid-OIDC",
"engines": {
"node": ">=16.13.1"
},
"main": "./dist/main.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"start:dev": "ts-node-dev ./src/main.ts",
"start": "tsc && node ./dist/main.js"
},
"bin": {
"solid-curl": "dist/solid-curl"
},
"repository": {
"type": "git",
"url": "https://github.com/wintechis/solid-curl.git"
},
"keywords": [
"Solid",
"cURL",
"Linked Data",
"Semantic Web"
],
"author": "Daniel Schraudner <daniel.schraudner@fau.de>",
"license": "MIT",
"bugs": {
"url": "https://github.com/wintechis/solid-curl/issues"
},
"homepage": "https://github.com/wintechis/solid-curl",
"dependencies": {
"@inrupt/solid-client-authn-node": "^1.11.2",
"commander": "^8.3.0",
"console-table-printer": "^2.11.2",
"express": "^4.17.1",
"keytar": "^7.9.0",
"loglevel": "^1.8.0",
"mime-types": "^2.1.35",
"n3": "^1.17.0",
"readline-sync": "^1.4.10"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/mime-types": "^2.1.1",
"@types/n3": "^1.16.0",
"@types/node": "^20.4.0",
"@types/readline-sync": "^1.4.4",
"ts-node-dev": "^1.1.8",
"typescript": "^4.5.4"
}
}