mirror of
https://github.com/NomaDamas/k-skill.git
synced 2026-06-24 02:04:11 +00:00
Move direct API calls out of the skill Python scripts and into shared proxy routes so end-users no longer need their own DATA_GO_KR_API_KEY for MFDS surfaces. Adds mfds.js helper, proxy tests, and updates all docs and setup guidance to reflect the hosted proxy workflow. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
18 lines
758 B
JSON
18 lines
758 B
JSON
{
|
|
"name": "k-skill-proxy",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"description": "Fastify proxy for k-skill upstream APIs",
|
|
"license": "MIT",
|
|
"main": "src/server.js",
|
|
"engines": {
|
|
"node": ">=18"
|
|
},
|
|
"scripts": {
|
|
"lint": "node --check src/airkorea.js && node --check src/bluer.js && node --check src/hrfco.js && node --check src/krx-stock.js && node --check src/mfds.js && node --check src/molit.js && node --check src/region-lookup.js && node --check src/server.js && node --check test/airkorea.test.js && node --check test/hrfco.test.js && node --check test/molit.test.js && node --check test/region-lookup.test.js && node --check test/server.test.js",
|
|
"test": "node --test"
|
|
},
|
|
"dependencies": {
|
|
"fastify": "^5.3.3"
|
|
}
|
|
}
|