Feat: server-infoエンドポイント / Fix: logger.tsを追跡対象に / Feat: lynqchat-jsを利用可能に / Fix: lynqchat-jsに不足していたエンドポイントを追加

This commit is contained in:
2026-03-19 15:12:26 +09:00
parent bb0bfc1dfd
commit 9e106c14f5
24 changed files with 544 additions and 94 deletions
+29 -2
View File
@@ -1,10 +1,37 @@
{
"name": "lynqchat",
"name": "lynqchat-js",
"description": "A LynqChat official JavaScript SDK.",
"private": true,
"type": "module",
"scripts": {},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"license": "AGPL-3.0-only",
"author": {
"name": "Last2014",
"email": "info@last2014.com",
"url": "https://about.last2014.com"
},
"scripts": {
"build": "tsc && tsc-alias && copyfiles -u 1 \"src/**/*.d.ts\" dist",
"prepare": "tsc && tsc-alias && copyfiles -u 1 \"src/**/*.d.ts\" dist"
},
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./*": {
"import": "./dist/*.js",
"types": "./dist/*.d.ts"
},
"./*/*": {
"import": "./dist/*/*.js",
"types": "./dist/*/*.d.ts"
}
},
"packageManager": "pnpm@10.29.1",
"dependencies": {
"copyfiles": "^2.4.1",
"tsc-alias": "^1.8.16",
"typescript": "^5.9.3"
}