This commit is contained in:
hsueh chiahao
2025-10-24 17:29:45 +08:00
commit b72142fc44
7 changed files with 2060 additions and 0 deletions

23
package.json Normal file
View File

@@ -0,0 +1,23 @@
{
"name": "kintone-license-server",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"build": "tsc",
"dev": "tsx src/server.ts",
"start": "node dist/server.js"
},
"dependencies": {
"express": "^4.18.2",
"jsrsasign": "^11.1.0",
"pg": "^8.11.3"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/node": "^20.8.9",
"@types/pg": "^8.10.7",
"tsx": "^4.6.2",
"typescript": "^5.3.0"
}
}