-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.41 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 2.41 KB
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
{
"name": "firebase-private-key-to-env",
"version": "1.0.0",
"repository": "github:WillBooster/firebase-private-key-to-env",
"license": "Apache-2.0",
"author": "WillBooster Inc.",
"main": "src/index.ts",
"scripts": {
"check-all-for-ai": "yarn check-for-ai && yarn test",
"check-for-ai": "yarn install > /dev/null && yarn format > /dev/null 2> /dev/null || true && yarn lint-fix --quiet && yarn typecheck",
"cleanup": "yarn format && yarn lint-fix",
"format": "sort-package-json && yarn prettify",
"postinstall": "husky || true",
"lint": "eslint --color",
"lint-fix": "yarn lint --fix",
"prepack": "pinst --disable",
"postpack": "pinst --enable",
"prepare": "husky || true",
"prettify": "prettier --cache --color --write \"**/{.*/,}*.{cjs,css,cts,htm,html,java,js,json,json5,jsonc,jsx,md,mjs,mts,scss,ts,tsx,vue,yaml,yml}\" \"!**/test{-,/}fixtures/**\" || true",
"start": "babel-node -x .js,.jsx,.es6,.es,.ts src/index.ts",
"test": "echo \"No tests configured\"",
"typecheck": "tsc --noEmit --Pretty"
},
"prettier": "@willbooster/prettier-config",
"dependencies": {
"core-js": "3.49.0",
"yargs": "18.0.0"
},
"devDependencies": {
"@babel/cli": "7.28.6",
"@babel/core": "7.29.0",
"@babel/node": "7.29.0",
"@babel/plugin-proposal-class-properties": "7.18.6",
"@babel/plugin-proposal-numeric-separator": "7.18.6",
"@babel/preset-env": "7.29.2",
"@babel/preset-typescript": "7.28.5",
"@types/eslint": "9.6.1",
"@types/micromatch": "4.0.10",
"@types/node": "24.12.0",
"@types/yargs": "17.0.35",
"@willbooster/eslint-config-ts": "11.4.12",
"@willbooster/prettier-config": "10.2.4",
"eslint": "9.39.1",
"eslint-config-flat-gitignore": "2.3.0",
"eslint-config-prettier": "10.1.8",
"eslint-import-resolver-typescript": "4.4.4",
"eslint-plugin-import-x": "4.16.2",
"eslint-plugin-sort-class-members": "1.21.0",
"eslint-plugin-sort-destructure-keys": "3.0.0",
"eslint-plugin-unicorn": "63.0.0",
"eslint-plugin-unused-imports": "4.4.1",
"globals": "17.4.0",
"husky": "9.1.7",
"lint-staged": "16.4.0",
"micromatch": "4.0.8",
"pinst": "3.0.0",
"prettier": "3.8.1",
"prettier-plugin-java": "2.8.1",
"sort-package-json": "3.6.1",
"typescript": "5.9.3",
"typescript-eslint": "8.57.1"
},
"packageManager": "yarn@4.13.0",
"publishConfig": {
"access": "public"
}
}