-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.15 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "guilded-webhook-action",
"author": "Zaid \"Nico\"",
"license": "MIT",
"version": "0.0.0",
"private": true,
"description": "Action for posting a message with text or embeds to a Guilded webhook",
"main": "dist/index.js",
"scripts": {
"build": "tsc && ncc build lib/index.js --minify",
"format": "prettier --write '**/*.ts'",
"lint": "eslint src/**/*.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/guildedjs/guilded-webhook-action.git"
},
"dependencies": {
"@actions/core": "^1.10.0",
"@guildedjs/webhook-client": "0.4.4"
},
"devDependencies": {
"@types/node": "^18.11.0",
"@vercel/ncc": "^0.31.1",
"eslint": "^8.31.0",
"eslint-config-neon": "^0.1.40",
"typescript": "^4.4.4"
},
"eslintConfig": {
"root": true,
"extends": [
"neon/common",
"neon/node",
"neon/typescript",
"neon/prettier"
],
"parserOptions": {
"project": "./tsconfig.json"
},
"ignorePatterns": [
"**/dist/*"
],
"rules": {
"import/extensions": "off",
"@typescript-eslint/no-confusing-void-expression": "off"
}
}
}