-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
94 lines (94 loc) · 3.07 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
{
"name": "wbfy",
"version": "0.0.0-semantically-released",
"description": "A tool for applying WillBooster's conventional configures to npm packages",
"repository": "github:WillBooster/wbfy",
"license": "Apache-2.0",
"author": "WillBooster Inc.",
"type": "module",
"bin": "./bin/wbfy.js",
"files": [
"bin/",
"dist/"
],
"scripts": {
"build": "build-ts app",
"check-all": "yarn cleanup && yarn typecheck && yarn test",
"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,js,json,json5,jsonc,jsx,md,mjs,mts,scss,ts,tsx,vue,yaml,yml}\" \"!**/test-fixtures/**\"",
"release": "yarn build && semantic-release",
"start": "build-ts run src/index.ts --env .env --",
"start-prod": "yarn build && yarn wbfy",
"test": "vitest tests",
"test/ci-setup": "cd .. && pwd && rm -Rf test-fixtures-for-wbfy && git clone https://github.com/WillBooster/test-fixtures-for-wbfy.git",
"typecheck": "tsc --noEmit --Pretty"
},
"prettier": "@willbooster/prettier-config",
"dependencies": {
"@octokit/core": "6.1.4",
"@willbooster/shared-lib": "5.2.14",
"@willbooster/shared-lib-node": "6.1.9",
"deepmerge": "4.3.1",
"dotenv": "16.4.7",
"fast-glob": "3.3.3",
"fastest-levenshtein": "1.0.16",
"js-yaml": "4.1.0",
"libsodium-wrappers": "0.7.15",
"lodash.clonedeep": "4.5.0",
"minimal-promise-pool": "4.1.2",
"simple-git": "3.27.0",
"yargs": "17.7.2",
"zod": "3.24.2"
},
"devDependencies": {
"@types/eslint": "8.56.11",
"@types/jest": "29.5.14",
"@types/js-yaml": "4.0.9",
"@types/libsodium-wrappers": "0.7.14",
"@types/lodash.clonedeep": "4.5.9",
"@types/micromatch": "4.0.9",
"@types/node": "22.13.8",
"@types/yargs": "17.0.33",
"@willbooster/eslint-config-ts": "11.0.6",
"@willbooster/prettier-config": "10.0.0",
"@yarnpkg/core": "4.2.0",
"build-ts": "13.1.26",
"conventional-changelog-conventionalcommits": "8.0.0",
"eslint": "9.21.0",
"eslint-config-prettier": "10.1.1",
"eslint-import-resolver-typescript": "3.8.3",
"eslint-plugin-import-x": "4.6.1",
"eslint-plugin-sort-class-members": "1.21.0",
"eslint-plugin-sort-destructure-keys": "2.0.0",
"eslint-plugin-unicorn": "57.0.0",
"eslint-plugin-unused-imports": "4.1.4",
"globals": "16.0.0",
"husky": "9.1.7",
"jest": "29.7.0",
"lint-staged": "15.4.3",
"micromatch": "4.0.8",
"pinst": "3.0.0",
"prettier": "3.5.3",
"semantic-release": "24.2.3",
"sort-package-json": "3.0.0",
"ts-node": "10.9.2",
"type-fest": "4.36.0",
"typescript": "5.8.2",
"typescript-eslint": "8.26.0",
"vitest": "3.0.7"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=18"
},
"publishConfig": {
"access": "public"
}
}