This commit is contained in:
Cyanoure
2024-09-15 14:32:53 +02:00
parent d89a0fefbe
commit fca0f47fb0
3 changed files with 2210 additions and 2 deletions

View File

@ -1,10 +1,15 @@
{
"name": "app",
"version": "1.0.0",
"main": "index.ts",
"main": "./dist/index.ts",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files":[
"dist"
],
"scripts": {
"start": "ts-node src/index.ts",
"build": "tsc",
"build": "tsup",
"postinstall": "npm run build"
},
"keywords": [],
@ -13,6 +18,7 @@
"description": "",
"devDependencies": {
"ts-node": "^10.9.2",
"tsup": "^8.2.4",
"typescript": "^5.6.2"
}
}