-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 2.3 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
{
"name": "yarn-plugin-auto-install",
"version": "0.0.0-semantically-released",
"description": "A yarn (berry) plugin for running `yarn install` automatically.",
"keywords": [
"yarn",
"berry",
"zero-installs",
"install",
"automation"
],
"repository": "github:WillBooster/yarn-plugin-auto-install",
"license": "Apache-2.0",
"author": "WillBooster Inc.",
"type": "module",
"main": "dist/index.cjs",
"bin": "./bin/install-plugin.cjs",
"files": [
"bin/"
],
"scripts": {
"build": "build-ts app -m cjs --inline VERSION && mv dist/index.js dist/index.cjs && cp dist/index.cjs .yarn/plugins/plugin-auto-install.cjs",
"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/**\"",
"typecheck": "tsc --noEmit --Pretty"
},
"prettier": "@willbooster/prettier-config",
"devDependencies": {
"@semantic-release/exec": "6.0.3",
"@types/eslint": "8.56.10",
"@types/micromatch": "4.0.7",
"@types/node": "22.8.6",
"@typescript-eslint/eslint-plugin": "8.22.0",
"@typescript-eslint/parser": "8.22.0",
"@willbooster/eslint-config-ts": "10.6.1",
"@willbooster/prettier-config": "9.1.3",
"@yarnpkg/core": "4.0.5",
"build-ts": "12.1.0",
"conventional-changelog-conventionalcommits": "8.0.0",
"eslint": "8.57.0",
"eslint-config-prettier": "10.0.1",
"eslint-import-resolver-typescript": "3.7.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",
"lint-staged": "15.4.3",
"micromatch": "4.0.8",
"pinst": "3.0.0",
"prettier": "3.4.2",
"semantic-release": "24.1.0",
"sort-package-json": "2.14.0",
"typescript": "5.7.3"
},
"packageManager": "[email protected]",
"publishConfig": {
"access": "public"
}
}