forked from karlprieb/babel-plugin-add-import-extension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
222 lines (222 loc) · 11.6 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
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
{
"name": "babel-plugin-transform-rewrite-imports",
"version": "1.5.3",
"description": "Add an extension to import specifiers that do not already have one, replace the extensions of those that do, or even rewrite specifiers entirely.",
"keywords": [
"babel",
"plugin",
"map",
"export",
"typescript",
"extension",
"commonjs",
"extensions",
"import",
"transform",
"esm",
"add",
"replace",
"append",
"mjs",
"cjs",
"require",
"es",
"module",
"dynamic",
"rewrite"
],
"homepage": "https://github.com/Xunnamius/babel-plugin-transform-rewrite-imports",
"repository": {
"type": "git",
"url": "https://github.com/Xunnamius/babel-plugin-transform-rewrite-imports"
},
"license": "MIT",
"author": "Xunnamius",
"sideEffects": false,
"type": "commonjs",
"exports": {
".": {
"types": "./dist/src/index.d.ts",
"default": "./dist/src/index.js"
},
"./package": "./package.json",
"./package.json": "./package.json"
},
"typesVersions": {
"*": {
"*": [
"dist/src/index.d.ts"
]
}
},
"files": [
"/dist",
"/LICENSE",
"/package.json",
"/README.md"
],
"scripts": {
"__test:repeat:all": "echo 'Repeating test suite [initializing]...'; (i=0; while [ \"$((( i += 1 ) <= 100 ))\" -ne 0 ]; do sleep 0.1 && echo \"\\r\\033[1A\\033[0KRepeating test suite [run $i/100]...\" && JEST_SILENT_REPORTER_SHOW_WARNINGS=true NODE_ENV=test jest --reporters=jest-silent-reporter || exit; done) && echo \"All tests passed! Congrats!\"",
"__test:repeat:unit": "echo 'Repeating test suite [initializing]...'; (i=0; while [ \"$((( i += 1 ) <= 100 ))\" -ne 0 ]; do sleep 0.1 && echo \"\\r\\033[1A\\033[0KRepeating test suite [run $i/100]...\" && JEST_SILENT_REPORTER_SHOW_WARNINGS=true NODE_ENV=test jest --reporters=jest-silent-reporter --testPathIgnorePatterns 'integration-.*\\.test\\.ts.*' dist || exit; done) && echo \"All tests passed! Congrats!\"",
"build": "npm run build:dist --",
"build:changelog": "conventional-changelog --outfile CHANGELOG.md --config ./conventional.config.js --release-count 0 --skip-unstable && (if [ \"$CHANGELOG_SKIP_TITLE\" != 'true' ]; then { node -e 'console.log(require(\"./conventional.config.js\").changelogTitle)'; cat CHANGELOG.md; } > CHANGELOG.md.ignore && mv CHANGELOG.md.ignore CHANGELOG.md; fi) && NODE_ENV=format remark --output --frail CHANGELOG.md && prettier --write CHANGELOG.md",
"build:dist": "NODE_ENV=production tsc --project tsconfig.types.json --incremental false && tsconfig-replace-paths --project tsconfig.types.json && NODE_ENV=production-cjs babel src --extensions .ts --out-dir dist/src",
"build:docs": "if [ -r ./next.config.js ]; then typedoc --plugin typedoc-plugin-markdown --cleanOutputDir --tsconfig tsconfig.docs.json --out docs --readme none lib src test types external-scripts --exclude '**/*.test.*' --exclude external-scripts/bin; else ENTRY=`node -e 'const entry = require(\"./package.json\").config?.[\"plugin-build\"]?.docs?.entry; if(!entry) throw new Error(\"\\\"config['\"'\"'plugin-build'\"'\"'].docs.entry\\\" field is not defined in package.json\"); console.log(entry)'` && echo 'Entry file:' \"$ENTRY\" && typedoc --plugin typedoc-plugin-markdown --cleanOutputDir --tsconfig tsconfig.docs.json --out docs --readme none $(echo $ENTRY); fi",
"build:externals": "NODE_ENV=production-external babel external-scripts --extensions .ts --out-dir external-scripts/bin --out-file-extension .mjs",
"clean": "git ls-files --exclude-standard --ignored --others --directory | grep -vE '^((\\.(env|vscode|husky))|next-env\\.d\\.ts|node_modules)($|\\/)' | xargs -p rm -rf",
"format": "MD_FILES=$(node -e 'console.log(require(`glob-gitignore`).sync(`**/*.md`, { ignore: require(`fs`).readFileSync(`.prettierignore`, `utf8`).split(`\n`).filter(Boolean), dot: true }).join(`\n`))') && (echo $MD_FILES | xargs remark --no-config --no-stdout --quiet --frail --use gfm --use lint-no-undefined-references || (echo -n '\u001b' && echo '[37;41;1m FAIL \u001b[0m cannot continue with undefined references present' && false)) && sort-package-json './package.json' './packages/*/package.json' && echo $MD_FILES | NODE_ENV=format xargs remark --output --frail && echo $MD_FILES | xargs doctoc --no-title --maxlevel 3 --update-only && prettier --write .",
"lint": "stdbuf -i0 -o0 -e0 tsc --project tsconfig.lint.json; X=$?; stdbuf -i0 -o0 -e0 eslint --parser-options=project:tsconfig.lint.json --no-error-on-unmatched-pattern packages src; Y=$?; MD_FILES=$(node -e 'console.log(require(`glob-gitignore`).sync(`**/*.md`, { ignore: require(`fs`).readFileSync(`.prettierignore`, `utf8`).split(`\n`).filter(Boolean), dot: true }).join(`\n`))') && echo $MD_FILES | NODE_ENV=lint xargs remark --quiet --frail --no-stdout; Z=$?; [ $X -eq 0 ] && [ $Y -eq 0 ] && [ $Z -eq 0 ]",
"lint:all": "stdbuf -i0 -o0 -e0 tsc --project tsconfig.eslint.json; X=$?; stdbuf -i0 -o0 -e0 eslint --parser-options=project:tsconfig.eslint.json .; Y=$?; MD_FILES=$(node -e 'console.log(require(`glob-gitignore`).sync(`**/*.md`, { ignore: require(`fs`).readFileSync(`.prettierignore`, `utf8`).split(`\n`).filter(Boolean), dot: true }).join(`\n`))') && echo $MD_FILES | NODE_ENV=lint xargs remark --quiet --frail --no-stdout; Z=$?; [ $X -eq 0 ] && [ $Y -eq 0 ] && [ $Z -eq 0 ]",
"list-tasks": "node -e 'console.log(Object.keys(require(\"./package.json\").scripts).join(\"\\n\"))' && (npm run -ws list-tasks --if-present 2>/dev/null || true)",
"prepare": "node -e \"execa = require('execa'); if(process.env.CI === undefined && (process.env.NODE_ENV === undefined || process.env.NODE_ENV === 'development')) { execa.sync('npx', ['husky', 'install'], { stdout: 'inherit', stderr: 'inherit' }); } else { console.log('skipped installing husky git hooks'); }\"",
"test": "npm run test:unit --",
"test:all": "NODE_ENV=test jest --coverage",
"test:integration": "NODE_ENV=test jest 'integration-.*\\.test\\.ts.*'",
"test:integration:client": "NODE_ENV=test jest 'integration-client.*\\.test\\.ts.*'",
"test:integration:externals": "NODE_ENV=test jest 'integration-external.*\\.test\\.ts.*'",
"test:integration:node": "NODE_ENV=test jest 'integration-node.*\\.test\\.ts.*'",
"test:repeat:all": "npm run __test:repeat:all --silent",
"test:repeat:unit": "npm run __test:repeat:unit --silent",
"test:unit": "NODE_ENV=test jest 'unit-.*\\.test\\.ts.*'"
},
"config": {
"plugin-build": {
"docs": {
"entry": "./src/index.ts"
}
}
},
"dependencies": {
"@babel/template": "^7.25.9",
"@babel/types": "^7.26.0",
"core-js": "^3.38.1",
"debug": "^4.3.7"
},
"devDependencies": {
"@babel/cli": "^7.25.9",
"@babel/eslint-parser": "^7.25.9",
"@babel/plugin-proposal-export-default-from": "^7.25.9",
"@babel/plugin-proposal-function-bind": "^7.25.9",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6",
"@babel/plugin-syntax-import-assertions": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@babel/preset-typescript": "^7.26.0",
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@ergodark/types": "^1.0.17",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/babel__helper-plugin-utils": "^7.10.3",
"@types/confusing-browser-globals": "^1.0.3",
"@types/debug": "^4.1.12",
"@types/jest": "^29.5.14",
"@types/lodash.mergewith": "^4.6.9",
"@types/node": "^22.8.4",
"@typescript-eslint/eslint-plugin": "^8.12.2",
"@typescript-eslint/parser": "^8.12.2",
"@xunnamius/conventional-changelog-projector": "^1.2.2",
"all-contributors-cli": "^6.26.1",
"babel-jest": "^29.7.0",
"babel-loader": "^9.2.1",
"babel-plugin-explicit-exports-references": "^1.0.2",
"babel-plugin-module-resolver": "^5.0.2",
"babel-plugin-source-map-support": "^2.2.0",
"babel-plugin-tester": "^11.0.4",
"babel-plugin-transform-default-named-imports": "^1.2.3",
"babel-plugin-transform-rename-import": "^2.3.0",
"babel-plugin-transform-rewrite-imports": "^1.5.2",
"confusing-browser-globals": "^1.0.11",
"conventional-changelog-cli": "^2.2.2",
"del": "^8.0.0",
"doctoc": "^2.2.1",
"dotenv": "^16.4.5",
"eslint": "^8.33.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-import-resolver-babel-module": "^5.3.2",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jest": "^28.8.3",
"eslint-plugin-module-resolver": "^1.5.0",
"eslint-plugin-unicorn": "^56.0.0",
"execa": "^5.1.1",
"glob": "^11.0.0",
"glob-gitignore": "^1.0.15",
"husky": "^9.1.6",
"jest": "^29.7.0",
"jest-circus": "^29.7.0",
"jest-extended": "^4.0.2",
"lint-staged": "^15.2.10",
"lodash.mergewith": "^4.6.2",
"prettier": "^3.3.3",
"remark-capitalize-headings": "^2.0.1",
"remark-cli": "^12.0.1",
"remark-frontmatter": "^5.0.0",
"remark-gfm": "^4.0.0",
"remark-ignore": "^2.0.0",
"remark-lint": "^10.0.0",
"remark-lint-definition-case": "^4.0.0",
"remark-lint-fenced-code-flag": "^4.0.0",
"remark-lint-fenced-code-flag-case": "^2.0.0",
"remark-lint-file-extension": "^3.0.0",
"remark-lint-final-newline": "^3.0.0",
"remark-lint-first-heading-level": "^4.0.0",
"remark-lint-hard-break-spaces": "^4.0.0",
"remark-lint-heading-increment": "^4.0.0",
"remark-lint-heading-whitespace": "^1.0.0",
"remark-lint-heading-word-length": "^2.0.0",
"remark-lint-list-item-style": "^2.0.0",
"remark-lint-no-blockquote-without-marker": "^6.0.0",
"remark-lint-no-duplicate-defined-urls": "^3.0.0",
"remark-lint-no-duplicate-definitions": "^4.0.0",
"remark-lint-no-duplicate-headings-in-section": "^4.0.0",
"remark-lint-no-empty-sections": "^4.0.0",
"remark-lint-no-empty-url": "^4.0.0",
"remark-lint-no-heading-content-indent": "^5.0.0",
"remark-lint-no-heading-like-paragraph": "^4.0.0",
"remark-lint-no-heading-punctuation": "^4.0.0",
"remark-lint-no-literal-urls": "^4.0.0",
"remark-lint-no-multiple-toplevel-headings": "^4.0.0",
"remark-lint-no-reference-like-url": "^4.0.0",
"remark-lint-no-shell-dollars": "^4.0.0",
"remark-lint-no-shortcut-reference-image": "^4.0.0",
"remark-lint-no-shortcut-reference-link": "^4.0.0",
"remark-lint-no-tabs": "^4.0.0",
"remark-lint-no-undefined-references": "^5.0.0",
"remark-lint-no-unused-definitions": "^4.0.0",
"remark-lint-ordered-list-marker-style": "^4.0.0",
"remark-lint-ordered-list-marker-value": "^4.0.0",
"remark-lint-strikethrough-marker": "^3.0.0",
"remark-lint-unordered-list-marker-style": "^4.0.0",
"remark-reference-links": "^7.0.0",
"remark-remove-unused-definitions": "^2.0.0",
"remark-remove-url-trailing-slash": "^2.0.0",
"remark-renumber-references": "^2.0.0",
"remark-sort-definitions": "^2.0.0",
"remark-tight-comments": "^2.0.0",
"remark-validate-links": "^13.0.1",
"semantic-release": "https://xunn.at/[email protected]",
"semver": "^7.6.3",
"simple-git": "^3.27.0",
"sort-package-json": "^2.10.1",
"source-map-support": "^0.5.21",
"spellchecker": "^3.7.1",
"strip-ansi": "^6.0.1",
"text-extensions": "^3.1.0",
"tsconfig-replace-paths": "^0.0.14",
"type-fest": "^4.26.1",
"typedoc": "^0.26.10",
"typedoc-plugin-markdown": "^4.2.9",
"typescript": "^5.6.3",
"unique-filename": "^4.0.0"
},
"peerDependencies": {
"@babel/core": ">=7.11.6"
},
"engines": {
"node": "^14.20.0 || ^16.16.0 || >=18.5.0"
},
"publishConfig": {
"access": "public"
}
}