v1.1.1
This commit is contained in:
parent
21daa7c587
commit
fe3208aba5
19
package.json
19
package.json
@ -1,16 +1,27 @@
|
|||||||
{
|
{
|
||||||
"name": "@navy.gif/discord-webhook",
|
"name": "@navy.gif/discord-webhook",
|
||||||
"version": "1.1.0",
|
"version": "1.1.1",
|
||||||
"description": "Client for interacting with discord webhooks",
|
"description": "Client for interacting with discord webhooks",
|
||||||
"main": "build/index.js",
|
"author": "Navy.gif",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"private": false,
|
"private": false,
|
||||||
"type": "module",
|
"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": [
|
"files": [
|
||||||
"build"
|
"build/**/*"
|
||||||
],
|
],
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"build": "tsc",
|
"build": "tsc && tsc -p tsconfig.cjs.json && node ./scripts/declareTypes.js",
|
||||||
"test": "tsc && jest",
|
"test": "tsc && jest",
|
||||||
"release": "tsc && yarn publish",
|
"release": "tsc && yarn publish",
|
||||||
"lint": "eslint --fix"
|
"lint": "eslint --fix"
|
||||||
|
Loading…
Reference in New Issue
Block a user