-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
169 lines (169 loc) · 6.16 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
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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
{
"name": "@flex-development/import-regex",
"description": "Import statement regex",
"version": "3.0.0",
"keywords": [
"dynamic",
"ecmascript",
"import",
"regex",
"static",
"typescript"
],
"license": "BSD-3-Clause",
"homepage": "https://github.com/flex-development/import-regex",
"repository": "https://github.com/flex-development/import-regex.git",
"bugs": {
"url": "https://github.com/flex-development/import-regex/issues"
},
"author": {
"name": "Lexus Drumgold",
"url": "https://github.com/unicornware"
},
"publishConfig": {
"access": "public",
"directory": "./"
},
"type": "module",
"files": [
"CHANGELOG.md",
"dist",
"src"
],
"exports": {
".": "./dist/index.mjs",
"./package.json": "./package.json"
},
"module": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"scripts": {
"build": "mkbuild",
"changelog": "node --loader=./loader.mjs ./config/changelog.config",
"check:ci": "yarn dedupe --check && yarn check:format && yarn check:lint && yarn check:spelling && yarn typecheck && yarn test:cov && yarn pack && yarn check:types:build && attw package.tgz && yarn clean:pack && yarn pkg-size",
"check:format": "prettier --check .",
"check:lint": "eslint --exit-on-fatal-error --max-warnings 0 .",
"check:spelling": "cspell lint --color --no-progress --relative $@ \"**\"",
"check:types": "tsc -p tsconfig.typecheck.json",
"check:types:attw": "yarn pack && attw package.tgz && yarn clean:pack",
"check:types:build": "bash ./scripts/typecheck-build.sh",
"check:upgrades": "yarn upgrade-interactive",
"clean:build": "trash ./{dist,*.tgz}",
"clean:coverage": "trash ./coverage",
"clean:modules": "trash ./.yarn/{cache,*.gz} ./node_modules",
"clean:pack": "trash ./*.tgz",
"clean:test": "yarn clean:coverage && trash ./__tests__/report.json",
"codecov": "yarn test:cov && yarn test:cov:upload",
"codecov:validate": "cat .codecov.yml | curl --data-binary @- https://codecov.io/validate",
"commitlint": "commitlint -V",
"fix:cg": "yarn fix:format && yarn fix:lint",
"fix:dedupe": "yarn dedupe --strategy=highest",
"fix:format": "prettier --cache --write .",
"fix:lint": "yarn check:lint --cache --fix",
"pkg-size": "pkg-size --sizes size --sort-by name",
"postinstall": "[ -f ./node_modules/.bin/husky ] && chmod +x .husky/* && husky install || exit 0",
"postpack": "toggle-scripts +postinstall",
"postpublish": "toggle-scripts +prepack",
"prepack": "toggle-scripts -postinstall && yarn build",
"prepublishOnly": "toggle-scripts -prepack",
"recommended-bump": "conventional-recommended-bump --preset=conventionalcommits --tag-prefix=$(jq .tagPrefix package.json -r) --verbose",
"release": "bash ./scripts/release.sh",
"test": "vitest run",
"test:cov": "yarn clean:coverage; yarn test --coverage",
"test:cov:serve": "vite preview --outDir ./coverage",
"test:cov:upload": "./codecov -t $CODECOV_TOKEN -f ./coverage/lcov.info",
"test:watch": "vitest",
"typecheck": "vitest typecheck --run",
"typecheck:watch": "vitest typecheck"
},
"devDependencies": {
"@arethetypeswrong/cli": "0.7.1",
"@commitlint/cli": "17.7.1",
"@flex-development/commitlint-config": "1.0.1",
"@flex-development/decorator-regex": "2.0.0",
"@flex-development/esm-types": "2.0.0",
"@flex-development/mkbuild": "1.0.0-alpha.21",
"@flex-development/mlly": "1.0.0-alpha.17",
"@flex-development/pathe": "2.0.0",
"@flex-development/tsconfig-utils": "2.0.2",
"@flex-development/tutils": "6.0.0-alpha.20",
"@graphql-eslint/eslint-plugin": "3.20.1",
"@types/chai": "4.3.5",
"@types/conventional-changelog": "3.1.1",
"@types/conventional-changelog-core": "4.2.1",
"@types/conventional-changelog-writer": "4.0.2",
"@types/conventional-recommended-bump": "6.1.0",
"@types/dateformat": "5.0.0",
"@types/eslint": "8.44.1",
"@types/git-raw-commits": "2.0.1",
"@types/is-ci": "3.0.0",
"@types/node-notifier": "8.0.2",
"@types/prettier": "3.0.0",
"@types/semver": "7.5.0",
"@typescript-eslint/eslint-plugin": "6.4.0",
"@typescript-eslint/parser": "6.4.0",
"@vates/toggle-scripts": "1.0.0",
"@vitest/coverage-v8": "0.34.1",
"add-stream": "1.0.0",
"chai": "5.0.0-alpha.1",
"conventional-changelog": "4.0.0",
"conventional-changelog-conventionalcommits": "6.1.0",
"conventional-changelog-core": "5.0.2",
"conventional-changelog-writer": "6.0.1",
"conventional-recommended-bump": "7.0.1",
"cross-env": "7.0.3",
"cspell": "6.31.3",
"dateformat": "5.0.3",
"esbuild": "0.19.0",
"eslint": "8.46.0",
"eslint-config-prettier": "9.0.0",
"eslint-import-resolver-typescript": "3.5.5",
"eslint-plugin-chai-expect": "3.0.0",
"eslint-plugin-import": "2.28.0",
"eslint-plugin-jest-formatting": "3.1.0",
"eslint-plugin-jsdoc": "44.1.0",
"eslint-plugin-jsonc": "2.9.0",
"eslint-plugin-markdown": "3.0.1",
"eslint-plugin-markdownlint": "0.4.1",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "5.0.0",
"eslint-plugin-promise": "6.1.1",
"eslint-plugin-unicorn": "48.0.1",
"eslint-plugin-yml": "1.8.0",
"graphql": "16.8.1",
"graphql-config": "5.0.2",
"growl": "1.10.5",
"husky": "8.0.3",
"is-ci": "3.0.1",
"jsonc-eslint-parser": "2.3.0",
"lint-staged": "13.2.3",
"mri": "1.2.0",
"node-notifier": "10.0.1",
"pkg-size": "2.4.0",
"prettier": "3.0.2",
"prettier-plugin-sh": "0.13.1",
"sade": "1.8.1",
"semver": "7.5.4",
"tempfile": "5.0.0",
"trash-cli": "5.0.0",
"ts-dedent": "2.2.0",
"typescript": "5.1.6",
"version-bump-prompt": "6.1.0",
"vite": "4.4.9",
"vite-tsconfig-paths": "4.2.0",
"vitest": "0.34.1",
"vitest-github-actions-reporter": "0.10.0",
"yaml-eslint-parser": "1.2.2"
},
"resolutions": {
"@ardatan/sync-fetch": "larsgw/sync-fetch#head=worker_threads",
"@flex-development/tutils": "6.0.0-alpha.20"
},
"engines": {
"node": ">=16.20.0",
"yarn": "4.0.0-rc.39"
},
"packageManager": "[email protected]",
"readme": "README.md",
"sideEffects": false,
"tagPrefix": ""
}