rooyca_obsidian-api-request/package.json

28 lines
763 B
JSON
Raw Permalink Normal View History

2023-05-03 01:57:48 +00:00
{
2023-05-03 03:27:06 +00:00
"name": "api-request",
"version": "2.0.0",
2024-06-05 20:58:27 +00:00
"description": "Fetch data from APIs or other sources. Responses in JSON, MD or HTML directly in your notes.",
2023-05-03 01:57:48 +00:00
"main": "main.js",
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
"version": "node version-bump.mjs && git add manifest.json versions.json"
},
"keywords": [],
2023-05-03 02:49:43 +00:00
"author": "rooyca",
2023-05-03 01:57:48 +00:00
"license": "MIT",
"devDependencies": {
"@types/node": "^16.11.6",
2023-05-03 02:49:43 +00:00
"@typescript-eslint/eslint-plugin": "^5.59.2",
2023-05-03 01:57:48 +00:00
"@typescript-eslint/parser": "5.29.0",
"builtin-modules": "3.3.0",
"esbuild": "0.25.0",
2023-05-03 01:57:48 +00:00
"obsidian": "latest",
"tslib": "2.4.0",
"typescript": "4.7.4"
},
"dependencies": {
"jsonpath-plus": "^10.2.0"
2023-05-03 01:57:48 +00:00
}
}