-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
92 lines (92 loc) · 3.06 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
{
"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",
"cleanup": "yarn format && yarn lint-fix",
"format": "sort-package-json && yarn prettify",
"postinstall": "husky || true",
"lint": "eslint --color \"./{scripts,src,tests}/**/*.{cjs,cts,js,jsx,mjs,mts,ts,tsx}\"",
"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.13",
"@willbooster/shared-lib-node": "6.1.8",
"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.4",
"@types/yargs": "17.0.33",
"@typescript-eslint/eslint-plugin": "8.24.0",
"@typescript-eslint/parser": "8.24.0",
"@willbooster/eslint-config-ts": "10.6.1",
"@willbooster/prettier-config": "9.1.3",
"@yarnpkg/core": "4.2.0",
"build-ts": "13.1.22",
"conventional-changelog-conventionalcommits": "8.0.0",
"eslint": "8.57.0",
"eslint-config-prettier": "10.0.1",
"eslint-import-resolver-typescript": "3.8.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-sort-class-members": "1.21.0",
"eslint-plugin-sort-destructure-keys": "2.0.0",
"eslint-plugin-unicorn": "56.0.1",
"husky": "9.1.7",
"jest": "29.7.0",
"lint-staged": "15.4.3",
"micromatch": "4.0.8",
"pinst": "3.0.0",
"prettier": "3.5.1",
"semantic-release": "24.2.2",
"sort-package-json": "2.14.0",
"ts-node": "10.9.2",
"type-fest": "4.34.1",
"typescript": "5.7.3",
"vitest": "3.0.5"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=18"
},
"publishConfig": {
"access": "public"
}
}