generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
62 lines (62 loc) · 1.78 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"version": "4.0.1",
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"lint": "eslint --fix '**/*.ts'",
"pack": "ncc build --source-map",
"all": "npm run build && npm run lint && npm run pack"
},
"dependencies": {
"@actions/core": "1.10.0",
"@actions/github": "5.1.1"
},
"devDependencies": {
"@types/node": "18.15.5",
"@typescript-eslint/eslint-plugin": "5.56.0",
"@typescript-eslint/parser": "5.56.0",
"@vercel/ncc": "0.36.1",
"eslint": "8.36.0",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-prettier": "4.2.1",
"prettier": "2.8.5",
"typescript": "5.0.2"
},
"eslintConfig": {
"parser": "@typescript-eslint/parser",
"extends": [
"plugin:@typescript-eslint/recommended",
"plugin:prettier/recommended"
],
"parserOptions": {
"ecmaVersion": 2019,
"sourceType": "module"
},
"rules": {
"no-unused-vars": "off",
"sort-imports": [
"error",
{
"ignoreCase": false,
"ignoreDeclarationSort": false,
"ignoreMemberSort": false,
"memberSyntaxSortOrder": [
"none",
"all",
"multiple",
"single"
]
}
],
"@typescript-eslint/no-unused-vars": "error",
"@typescript-eslint/no-var-requires": "off"
}
},
"prettier": {
"arrowParens": "avoid",
"trailingComma": "all",
"singleQuote": false,
"printWidth": 100,
"tabWidth": 4
}
}