Config + license updates

This commit is contained in:
tsickert 2024-04-05 09:21:58 +00:00
parent d051f84303
commit 3ea4c3dda6
4 changed files with 1967 additions and 225 deletions

BIN
dist/licenses.txt generated vendored

Binary file not shown.

2183
package-lock.json generated

File diff suppressed because it is too large Load diff

View file

@ -3,9 +3,10 @@
"version": "5.3.0", "version": "5.3.0",
"private": true, "private": true,
"description": "Send discord webhooks via GitHub Actions!", "description": "Send discord webhooks via GitHub Actions!",
"main": "lib/webhook.js", "main": "build/src/action.js",
"scripts": { "scripts": {
"build": "tsc", "build": "tsc",
"watch": "tsc --watch",
"format": "prettier --write '**/*.ts'", "format": "prettier --write '**/*.ts'",
"format-check": "prettier --check '**/*.ts'", "format-check": "prettier --check '**/*.ts'",
"lint": "eslint src/**/*.ts", "lint": "eslint src/**/*.ts",

View file

@ -3,11 +3,11 @@
"target": "es2017", /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017', 'ES2018', 'ES2019' or 'ESNEXT'. */ "target": "es2017", /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017', 'ES2018', 'ES2019' or 'ESNEXT'. */
"module": "es2022", /* Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', or 'ESNext'. */ "module": "es2022", /* Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', or 'ESNext'. */
"moduleResolution": "node", "moduleResolution": "node",
"outDir": "./lib", /* Redirect output structure to the directory. */ "outDir": "./build", /* Redirect output structure to the directory. */
"rootDir": "./src", /* Specify the root directory of input files. Use to control the output directory structure with --outDir. */ "rootDir": "./", /* Specify the root directory of input files. Use to control the output directory structure with --outDir. */
"strict": true, /* Enable all strict type-checking options. */ "strict": true, /* Enable all strict type-checking options. */
"noImplicitAny": true, /* Raise error on expressions and declarations with an implied 'any' type. */ "noImplicitAny": true, /* Raise error on expressions and declarations with an implied 'any' type. */
"esModuleInterop": true /* Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. Implies 'allowSyntheticDefaultImports'. */ "esModuleInterop": true /* Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. Implies 'allowSyntheticDefaultImports'. */
}, },
"exclude": ["node_modules", "**/*.test.ts"] "include": ["./src/**/*", "./lib/**/*"]
} }