setup typescript

This commit is contained in:
2025-10-09 20:51:25 -07:00
parent 71c0a6eb9e
commit 16da07c374
5 changed files with 2037 additions and 6 deletions

View File

@ -2,12 +2,21 @@
"name": "npm",
"version": "1.0.0",
"description": "",
"main": "index.js",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
"build": "tsup"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "commonjs"
"keywords": [
"discord",
"api"
],
"author": "doqe",
"license": "MIT",
"type": "commonjs",
"devDependencies": {
"tsup": "^8.5.0",
"typescript": "^5.9.3"
}
}