-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.02 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
{
"name": "setup-fluttergen",
"version": "1.0.1",
"private": true,
"description": "GitHub Action to set up FlutterGen CLI",
"license": "MIT",
"author": "FlutterGen",
"type": "module",
"exports": {
".": "./dist/index.js"
},
"main": "./src/index.ts",
"scripts": {
"bake": "bun build ./src/index.ts --outdir dist --target node --sourcemap=external",
"dev": "node ./dist/index.js",
"fmt": "bun prettier --write .",
"fmt:check": "bun prettier --check .",
"lint": "eslint ./src/**/*.ts",
"lint:fix": "eslint ./src/**/*.ts --fix",
"prepare": "lefthook install"
},
"prettier": {
"arrowParens": "always",
"bracketSpacing": true,
"endOfLine": "lf",
"plugins": [
"prettier-plugin-packagejson"
],
"printWidth": 120,
"semi": true,
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "all",
"useTabs": false
},
"eslintConfig": {
"env": {
"node": true
},
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint",
"github",
"import"
],
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:github/recommended",
"plugin:import/recommended",
"prettier"
],
"rules": {
"i18n-text/no-en": "off"
},
"root": true
},
"dependencies": {
"@actions/cache": "^3.2.4",
"@actions/core": "^1.10.1",
"@actions/tool-cache": "^2.0.1",
"@types/semver": "^7.5.8",
"execa": "^9.3.1"
},
"devDependencies": {
"@types/node": "22.7.9",
"@typescript-eslint/eslint-plugin": "8.11.0",
"@typescript-eslint/parser": "8.11.0",
"eslint": "8.57.1",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-github": "5.0.2",
"eslint-plugin-import": "2.31.0",
"lefthook": "1.8.2",
"prettier": "3.3.3",
"prettier-eslint": "16.3.0",
"prettier-plugin-packagejson": "2.5.3",
"typescript": "5.6.3"
},
"engines": {
"node": ">=20"
}
}