Files
tase-api-node/package.json
2025-10-09 22:01:17 -07:00

32 lines
600 B
JSON

{
"name": "tase-api",
"version": "1.0.0",
"description": "The official NPM wrapper for The All Seeing Eye's API",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"scripts": {
"build": "tsup"
},
"keywords": [
"discord",
"api"
],
"author": "doqe",
"license": "MIT",
"type": "commonjs",
"devDependencies": {
"tsup": "^8.5.0",
"typescript": "^5.9.3"
},
"dependencies": {
"cross-fetch": "^4.1.0"
}
}