-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
122 lines (122 loc) · 4.11 KB
/
package.json
File metadata and controls
122 lines (122 loc) · 4.11 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
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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "@flex-development/eslint-config",
"description": "shareable eslint config",
"version": "1.1.1",
"keywords": [
"eslint",
"eslintconfig"
],
"license": "BSD-3-Clause",
"homepage": "https://github.com/flex-development/eslint-config",
"repository": "https://github.com/flex-development/eslint-config.git",
"bugs": "https://github.com/flex-development/eslint-config/issues",
"author": {
"name": "Lexus Drumgold",
"url": "https://github.com/unicornware"
},
"publishConfig": {
"access": "public",
"diff-dst-prefix": "eslint-config",
"diff-src-prefix": "eslint-config",
"directory": "./",
"executableFiles": [],
"node-options": null,
"pack-destination": ".",
"parseable": true,
"prefer-dedupe": true,
"provenance": true,
"tag-version-prefix": ""
},
"type": "module",
"files": [
"CHANGELOG.md",
"LICENSE.md",
"README.md",
"lib"
],
"exports": {
".": "./lib/index.mjs",
"./node": "./lib/node.mjs",
"./package.json": "./package.json"
},
"remarkConfig": {
"plugins": [
"@flex-development/remark-preset"
]
},
"scripts": {
"build": "yarn clean:build && tsc -p tsconfig.build.json --noEmit false && trash ./lib/{bases,utils}/*.d{.mts.map,.mts}",
"check:ci": "yarn dedupe --check && yarn check:format && yarn check:lint && yarn check:spelling && yarn pack && yarn check:types:build && attw package.tgz && yarn clean:pack",
"check:format": "dprint check --incremental=false",
"check:lint": "eslint --exit-on-fatal-error --max-warnings 0 .",
"check:spelling": "cspell lint --color --no-progress --relative $@ \"**\"",
"check:types:attw": "yarn pack && attw package.tgz; yarn clean:pack",
"check:types:build": "tsc -p tsconfig.build.json",
"check:upgrades": "yarn upgrade-interactive",
"clean:build": "trash ./lib/**/*.d{.mts.map,.mts} || exit 0",
"clean:modules": "trash ./.yarn/{cache,*.gz} ./node_modules",
"clean:pack": "trash \"./*.tgz\"",
"commitlint": "commitlint -V",
"fix:cg": "yarn fix:format && yarn fix:lint",
"fix:dedupe": "yarn dedupe --strategy=highest",
"fix:format": "dprint fmt",
"fix:lint": "yarn check:lint --cache --fix",
"postinstall": "[ -f ./node_modules/.bin/husky ] && chmod +x .husky/* && husky || exit 0",
"postpack": "toggle-scripts +postinstall",
"postpublish": "toggle-scripts +prepack",
"prepack": "toggle-scripts -postinstall && yarn build",
"prepublishOnly": "toggle-scripts -prepack",
"release": "bash ./scripts/release.sh",
"remark": "remark ."
},
"dependencies": {
"@eslint/js": "9.29.0",
"@flex-development/pathe": "4.0.2",
"@stylistic/eslint-plugin": "5.0.0",
"@typescript-eslint/eslint-plugin": "8.35.0",
"@typescript-eslint/parser": "8.35.0",
"eslint-import-resolver-typescript": "4.4.3",
"eslint-mdx": "3.5.0",
"eslint-plugin-chai-expect": "3.1.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-jest-formatting": "3.1.0",
"eslint-plugin-jsdoc": "51.0.1",
"eslint-plugin-jsonc": "2.20.1",
"eslint-plugin-mdx": "3.5.0",
"eslint-plugin-n": "17.20.0",
"eslint-plugin-promise": "7.2.1",
"eslint-plugin-unicorn": "59.0.1",
"eslint-plugin-yml": "1.18.0",
"globals": "16.2.0",
"jsonc-eslint-parser": "2.4.0",
"typescript-eslint": "8.35.0",
"yaml-eslint-parser": "1.3.0"
},
"devDependencies": {
"@arethetypeswrong/cli": "0.18.2",
"@commitlint/cli": "19.8.1",
"@commitlint/types": "19.8.1",
"@flex-development/commitlint-config": "1.0.1",
"@flex-development/grease": "3.0.0-alpha.9",
"@flex-development/remark-preset": "1.0.0",
"@tsconfig/strictest": "2.0.5",
"@vates/toggle-scripts": "1.0.0",
"cspell": "9.1.2",
"devlop": "1.1.0",
"dprint": "0.50.0",
"editorconfig": "3.0.0",
"eslint": "9.29.0",
"growl": "1.10.5",
"husky": "9.1.7",
"prettier": "3.5.3",
"remark": "15.0.1",
"remark-cli": "12.0.1",
"sh-syntax": "0.5.8",
"trash-cli": "6.0.0",
"typescript": "5.8.3",
"unified": "11.0.5",
"vfile": "6.0.3"
},
"packageManager": "yarn@4.9.1",
"sideEffects": false
}