-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
104 lines (104 loc) · 2.79 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "lotto-archive",
"type": "module",
"version": "1.0.0",
"main": "dist/index.js",
"author": "bang9 <[email protected]>",
"license": "MIT",
"packageManager": "[email protected]",
"scripts": {
"build": "rm -rf dist/**/**.js && rollup --config rollup.config.ts --configPlugin @rollup/plugin-typescript",
"fix": "yarn fix:eslint && yarn fix:prettier",
"fix:eslint": "eslint --fix src --ext js,jsx,ts,tsx ",
"fix:prettier": "prettier --write \"src/**/*.{ts,tsx,js}\"",
"lint": "yarn lint:ts && yarn lint:eslint && yarn lint:prettier",
"lint:ts": "tsc --noEmit",
"lint:eslint": "eslint src --ext js,jsx,ts,tsx ",
"lint:prettier": "prettier --check \"src/**/*.{ts,tsx,js}\""
},
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/github": "^6.0.0",
"@rich-automation/lotto": "1.0.0",
"dayjs": "^1.11.13"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.1",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.1.0",
"@rollup/plugin-terser": "^0.4.3",
"@rollup/plugin-typescript": "^11.1.1",
"@typescript-eslint/eslint-plugin": "^5.59.9",
"@typescript-eslint/parser": "^5.59.9",
"eslint": "^8.42.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.8.8",
"release-it": "^15.11.0",
"rollup": "4.22.4",
"rollup-plugin-copy": "^3.5.0",
"typescript": "^5.1.3"
},
"eslintConfig": {
"root": true,
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"eslint-config-prettier"
],
"plugins": [
"@typescript-eslint",
"eslint-plugin-prettier"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 2018,
"sourceType": "module"
},
"rules": {
"@typescript-eslint/no-unused-vars": [
"error",
{
"argsIgnorePattern": "^_",
"varsIgnorePattern": "^_"
}
],
"@typescript-eslint/no-namespace": "off",
"prettier/prettier": [
"error",
{
"printWidth": 120,
"tabWidth": 2,
"useTabs": false,
"semi": true,
"singleQuote": true,
"trailingComma": "none",
"bracketSpacing": true,
"arrowParens": "avoid",
"bracketSameLine": false,
"proseWrap": "never"
}
]
},
"ignorePatterns": [
"node_modules/",
"lib/",
"dist/"
]
},
"prettier": {
"printWidth": 120,
"tabWidth": 2,
"useTabs": false,
"semi": true,
"singleQuote": true,
"trailingComma": "none",
"bracketSpacing": true,
"arrowParens": "avoid",
"bracketSameLine": false,
"proseWrap": "never"
},
"resolutions": {
"playwright": "1.49.1"
}
}