mirror of
https://github.com/kirameki-cafe/Tenki.git
synced 2026-09-13 10:49:09 +00:00
24 lines
579 B
JSON
24 lines
579 B
JSON
{
|
|||
|
|
"name": "tenki",
|
||
|
|
"version": "1.0.0",
|
||
|
|
"main": "index.js",
|
||
|
|
"repository": "https://github.com/YuzuZensai/Tenki.git",
|
||
|
|
"author": "Yuzu <yuzu@kirameki.cafe>",
|
||
|
|
"license": "MIT",
|
||
|
|
"devDependencies": {
|
||
|
|
"@types/express": "^4.17.18",
|
||
|
|
"ts-node-dev": "^2.0.0",
|
||
|
|
"typescript": "^5.2.2"
|
||
|
|
},
|
||
|
|
"scripts": {
|
||
|
|
"tsc": "tsc",
|
||
|
|
"dev": "ts-node-dev ./src/index.ts --respawn --transpileOnly",
|
||
|
|
"development": "ts-node-dev ./src/index.ts --respawn --transpileOnly",
|
||
|
|
"build": "tsc -b"
|
||
|
|
},
|
||
|
|
"dependencies": {
|
||
|
|
"axios": "^1.5.0",
|
||
|
|
"express": "^4.18.2"
|
||
|
|
}
|
||
|
|
}
|