webhook/package.json

41 lines
1.0 KiB
JSON
Raw Normal View History

2023-04-12 15:37:37 +02:00
{
2023-04-12 15:43:56 +02:00
"name": "@navy.gif/discord-webhook",
2023-04-12 20:27:41 +02:00
"version": "1.2.0",
2023-04-12 15:37:37 +02:00
"description": "Client for interacting with discord webhooks",
2023-04-12 20:10:26 +02:00
"author": "Navy.gif",
2023-04-12 15:37:37 +02:00
"license": "MIT",
2023-04-12 15:43:56 +02:00
"private": false,
2023-04-12 15:37:37 +02:00
"type": "module",
2023-04-12 20:10:26 +02:00
"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"
}
},
2023-04-12 15:37:37 +02:00
"files": [
2023-04-12 20:10:26 +02:00
"build/**/*"
2023-04-12 15:37:37 +02:00
],
"scripts": {
"build": "tsc --build --force && tsc --project tsconfig.cjs.json && node ./scripts/declareTypes.js",
2023-04-12 15:37:37 +02:00
"test": "tsc && jest",
"release": "tsc && yarn publish",
"lint": "eslint --fix"
},
"devDependencies": {
"@types/node": "^18.15.11",
2023-04-12 20:27:41 +02:00
"@types/node-fetch": "2",
2023-04-12 15:37:37 +02:00
"@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"
2023-04-12 15:37:37 +02:00
}
}