webhook/package.json

41 lines
1.1 KiB
JSON
Raw Normal View History

2023-07-15 23:39:13 +02:00
{
"name": "@navy.gif/discord-webhook",
2023-07-15 23:42:07 +02:00
"version": "1.2.2",
2023-07-15 23:39:13 +02:00
"description": "Client for interacting with discord webhooks",
"author": "Navy.gif",
"license": "MIT",
"private": false,
"type": "module",
"main": "build/cjs/index.js",
"module": "build/esm/index.js",
"types": "./build/esm/index.d.ts",
"exports": {
".": {
"import": "./build/esm/index.js",
"require": "./build/cjs/index.js",
"default": "./build/cjs/index.js",
"types": "./build/esm/index.d.ts"
}
},
"files": [
"build/**/*"
],
"scripts": {
"build": "tsc --build --force && tsc --project tsconfig.cjs.json && node ./scripts/declareTypes.js",
"test": "tsc && jest",
"release": "tsc && yarn publish",
"lint": "eslint --fix"
},
"devDependencies": {
2023-12-08 13:35:15 +01:00
"@types/node": "^20.4.2",
2023-07-15 23:39:13 +02:00
"@types/node-fetch": "2",
"@typescript-eslint/eslint-plugin": "^5.57.1",
"@typescript-eslint/parser": "^5.57.1",
"eslint": "^8.37.0",
"typescript": "^5.0.3"
},
"dependencies": {
"node-fetch": "2"
}
}