@gurso/oxc-config 0.0.9 → 0.0.11

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (26) hide show
  1. package/bin.sh +8 -10
  2. package/index.d.ts +35 -0
  3. package/index.js +3 -1
  4. package/oxfmt.js +1 -0
  5. package/oxlint.config.js +9 -0
  6. package/oxlint.js +3 -0
  7. package/package.json +10 -4
  8. package/vize.config.js +19 -0
  9. package/vize.js +3 -0
  10. package/.gitlab-ci.yml +0 -54
  11. package/.npm/_cacache/content-v2/sha512/32/28/6a88fce224da16cb832a35257e8d503583ed3b8900e3662474bda09a0e83e0144889a4232cc5a9a4b732d5d3b704790b12274e2f41a5380b3090c08bed0c +0 -0
  12. package/.npm/_cacache/content-v2/sha512/3e/e8/2ab3a3349bb2efd48ec5b713786a8c93a0a8350b8b6efbfdfcd6f1f7e72f2810d33f022edfec2e12b5ca0ae3ff814b0f5e6dc4bc8d1895ace44528200b2f +0 -0
  13. package/.npm/_cacache/content-v2/sha512/8d/28/f6c024da93080f33191f895657d237fe9d7f8dcfac65c80663a8d134a974c574204f6253fa24037e3838e679a970ec35c18cecd86ddb2ac013006673d9e8 +0 -0
  14. package/.npm/_cacache/content-v2/sha512/cb/64/efbb14993c3c906a490544f6472859be28a56a222b1d83dfc26709bd7edbca5cb3fc3515a3dfcfce0e335baf8dd2b285ea36e022b047f519d0b1a9671d07 +0 -0
  15. package/.npm/_cacache/index-v5/3f/9c/1ee1185819bc2ca30a99923df9cf676025c77566eb9c1cb43e182ac69771 +0 -2
  16. package/.npm/_cacache/index-v5/a2/18/54adaf9f2ad7786c0ccf801c82df29e995adfed77dc48689f89a281be738 +0 -2
  17. package/.npm/_cacache/index-v5/a5/6b/04a0197912a7df41d1853ccf563ae8637ac97b69b693703dc89424e1cba3 +0 -2
  18. package/.npm/_cacache/index-v5/bb/65/7b2f40f1e944d87fe713e5d57907b832fabd26a381ceb8dfa97ac4024de8 +0 -2
  19. package/.npm/_logs/2026-06-20T09_12_35_334Z-debug-0.log +0 -64
  20. package/.npm/_logs/2026-06-20T09_12_36_201Z-debug-0.log +0 -18
  21. package/.npm/_logs/2026-06-20T09_13_10_710Z-debug-0.log +0 -56
  22. package/.npm/_logs/2026-06-20T09_13_11_434Z-debug-0.log +0 -18
  23. package/.npm/_logs/2026-06-20T09_13_11_963Z-debug-0.log +0 -15
  24. package/index.ts +0 -3
  25. package/oxfmt.config.ts +0 -9
  26. package/tsconfig.json +0 -23
package/bin.sh CHANGED
@@ -11,14 +11,13 @@ case "$1" in
11
11
  cp "$src_dir/oxfmt.config.ts" "$PWD/oxfmt.config.ts"
12
12
  ;;
13
13
  "lint")
14
- echo "Lint config not ready yet"
14
+ cp "$src_dir/oxlint.config.ts" "$PWD/oxlint.config.ts"
15
15
  ;;
16
- "")
17
- cp "$src_dir/oxfmt.config.ts" "$PWD/oxfmt.config.ts"
18
- echo "Lint config not ready yet"
16
+ "vize")
17
+ cp "$src_dir/vize.config.ts" "$PWD/oxlint.config.ts"
19
18
  ;;
20
19
  *)
21
- echo "copy accept 'fmt', 'lint' or no value"
20
+ echo "copy accept 'fmt', 'lint' or 'vize'"
22
21
  esac
23
22
  ;;
24
23
  "import")
@@ -27,14 +26,13 @@ case "$1" in
27
26
  cp "$src_dir/oxfmt.js" "$PWD/oxfmt.config.ts"
28
27
  ;;
29
28
  "lint")
30
- echo "Lint config not ready yet for import"
29
+ cp "$src_dir/oxlint.js" "$PWD/oxlint.config.ts"
31
30
  ;;
32
- "")
33
- cp "$src_dir/oxfmt.js" "$PWD/oxfmt.config.ts"
34
- echo "Lint config not ready yet for import"
31
+ "vize")
32
+ cp "$src_dir/vize.js" "$PWD/oxlint.config.ts"
35
33
  ;;
36
34
  *)
37
- echo "import accept 'fmt', 'lint' or no value"
35
+ echo "import accept 'fmt', 'lint' or 'vize'"
38
36
  ;;
39
37
  esac
40
38
  ;;
package/index.d.ts ADDED
@@ -0,0 +1,35 @@
1
+ declare const _default: {
2
+ fmt: {
3
+ bracketSameLine: true;
4
+ useTabs: true;
5
+ semi: false;
6
+ sortTailwindcss: true;
7
+ arrowParens: "avoid";
8
+ };
9
+ lint: {
10
+ categories: {
11
+ correctness: "error";
12
+ suspicious: "warn";
13
+ pedantic: "error";
14
+ perf: "warn";
15
+ };
16
+ };
17
+ vize: {
18
+ categories: {
19
+ correctness: "error";
20
+ suspicious: "warn";
21
+ pedantic: "error";
22
+ perf: "warn";
23
+ };
24
+ plugins: "vue"[];
25
+ jsPlugins: string[];
26
+ settings: {
27
+ vize: {
28
+ helpLevel: string;
29
+ preset: string;
30
+ };
31
+ };
32
+ rules: import("oxlint-plugin-vize").OxlintRuleConfig;
33
+ };
34
+ };
35
+ export default _default;
package/index.js CHANGED
@@ -1,2 +1,4 @@
1
1
  import fmt from "./oxfmt.config.js";
2
- export default { fmt };
2
+ import lint from "./oxlint.config.js";
3
+ import vize from "./vize.config.js";
4
+ export default { fmt, lint, vize };
package/oxfmt.js CHANGED
@@ -1,3 +1,4 @@
1
+ // npx oxlint-vize -f stylish
1
2
  import conf from "@gurso/oxc-config"
2
3
 
3
4
  export default conf.fmt
@@ -0,0 +1,9 @@
1
+ import { defineConfig } from "oxlint";
2
+ export default defineConfig({
3
+ categories: {
4
+ correctness: "error",
5
+ suspicious: "warn",
6
+ pedantic: "error",
7
+ perf: "warn",
8
+ },
9
+ });
package/oxlint.js ADDED
@@ -0,0 +1,3 @@
1
+ import conf from "@gurso/oxc-config"
2
+
3
+ export default conf.lint
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gurso/oxc-config",
3
- "version": "0.0.9",
3
+ "version": "0.0.11",
4
4
  "keywords": [
5
5
  "oxc"
6
6
  ],
@@ -13,16 +13,22 @@
13
13
  "url": "git+ssh://git@gitlab.com/gurso/oxc-config.git"
14
14
  },
15
15
  "bin": "./bin.sh",
16
+ "files": [
17
+ "*.js",
18
+ "./index.d.ts"
19
+ ],
16
20
  "type": "module",
17
21
  "main": "./index.js",
18
22
  "scripts": {
19
- "lint": "echo 'TODO: lint stuff'",
23
+ "lint": "oxlint",
20
24
  "fmt": "oxfmt --check",
21
25
  "typecheck": "tsc --noEmit",
22
- "build": "tsc"
26
+ "build": "tsc --declaration"
23
27
  },
24
28
  "dependencies": {
25
- "oxfmt": "0.55.0"
29
+ "oxfmt": "0.55.0",
30
+ "oxlint": "1.70.0",
31
+ "oxlint-plugin-vize": "0.243.0"
26
32
  },
27
33
  "devDependencies": {
28
34
  "typescript": "6.0.3"
package/vize.config.js ADDED
@@ -0,0 +1,19 @@
1
+ import { defineConfig } from "oxlint";
2
+ import { configs } from "oxlint-plugin-vize";
3
+ export default defineConfig({
4
+ categories: {
5
+ correctness: "error",
6
+ suspicious: "warn",
7
+ pedantic: "error",
8
+ perf: "warn",
9
+ },
10
+ plugins: ["vue"],
11
+ jsPlugins: ["oxlint-plugin-vize"],
12
+ settings: {
13
+ vize: {
14
+ helpLevel: "short",
15
+ preset: "opinionated",
16
+ },
17
+ },
18
+ rules: configs.opinionated,
19
+ });
package/vize.js ADDED
@@ -0,0 +1,3 @@
1
+ import conf from "@gurso/oxc-config"
2
+
3
+ export default conf.vize
package/.gitlab-ci.yml DELETED
@@ -1,54 +0,0 @@
1
- image: node
2
-
3
- stages:
4
- - test
5
- - deploy
6
-
7
- variables:
8
- npm_config_cache: "$CI_PROJECT_DIR/.npm"
9
-
10
- cache:
11
- key:
12
- files:
13
- - package-lock.json
14
- paths:
15
- - .npm/
16
-
17
- before_script:
18
- - npm ci --prefer-offline
19
-
20
- .test_template:
21
- stage: test
22
- rules:
23
- - if: $CI_COMMIT_TAG =~ /^v(\d+\.){2}\d+$/
24
- - if: $CI_PIPELINE_SOURCE == "web"
25
- - if: $CI_PIPELINE_SOURCE == "api"
26
- - if: $CI_PIPELINE_SOURCE == "trigger"
27
-
28
- lint:
29
- extends: .test_template
30
- script:
31
- - npm run lint
32
-
33
- format:
34
- extends: .test_template
35
- script:
36
- - npm run fmt
37
-
38
- typecheck:
39
- extends: .test_template
40
- script:
41
- - npm run typecheck
42
-
43
- publish:
44
- stage: deploy
45
- id_tokens:
46
- NPM_ID_TOKEN:
47
- aud: "npm:registry.npmjs.org"
48
- SIGSTORE_ID_TOKEN:
49
- aud: sigstore
50
- rules:
51
- - if: $CI_COMMIT_TAG =~ /^v(\d+\.){2}\d+$/
52
- script:
53
- - npm run build
54
- - npm publish --access public
@@ -1,2 +0,0 @@
1
-
2
- cd8249b05a2d3307312473cd0c1921d13415f396 {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/tinypool/-/tinypool-2.1.0.tgz","integrity":"sha512-Pugqs6M0m7Lv1I7FtxN4aoyToKg1C4tu+/381vH35y8oENM/Ai7f7C4StcoK4/+BSw9ebcS8jRiVrORFKCALLw==","time":1781946755784,"size":14170,"metadata":{"time":1781946755730,"url":"https://registry.npmjs.org/tinypool/-/tinypool-2.1.0.tgz","reqHeaders":{},"resHeaders":{"cache-control":"public, immutable, max-age=31557600","content-type":"application/octet-stream","date":"Sat, 20 Jun 2026 09:12:35 GMT","etag":"\"a1806b4be28f0bce287f51edb50fe540\"","last-modified":"Sat, 03 Jan 2026 07:37:54 GMT","vary":"Accept-Encoding"},"options":{"compress":true}}}
@@ -1,2 +0,0 @@
1
-
2
- a674ec811d639efb3926c9bb359ae962ce2761db {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/typescript/-/typescript-6.0.3.tgz","integrity":"sha512-y2TvuxSZPDyQakkFRPZHKFm+KKVqIisdg9/CZwm9ftvKXLP8NRWj38/ODjNbr43SsoXqNuAisEf1GdCxqWcdBw==","time":1781946756108,"size":4515854,"metadata":{"time":1781946755738,"url":"https://registry.npmjs.org/typescript/-/typescript-6.0.3.tgz","reqHeaders":{},"resHeaders":{"cache-control":"public, immutable, max-age=31557600","content-type":"application/octet-stream","date":"Sat, 20 Jun 2026 09:12:35 GMT","etag":"\"0136d6b610a8ef0251f65aecb4c9fc24\"","last-modified":"Thu, 16 Apr 2026 23:38:31 GMT","vary":"Accept-Encoding"},"options":{"compress":true}}}
@@ -1,2 +0,0 @@
1
-
2
- 1ecd9c66dbf2c1baee64d2320a8b2fcdcb550c92 {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/oxfmt/-/oxfmt-0.55.0.tgz","integrity":"sha512-jSj2wCTakwgPMxkfiVZX0jf+nX+Nz6xlyAZjqNE0qXTFdCBPYlP6JAN+ODjmealw7DXBjOzYbdsqwBMAZnPZ6A==","time":1781946755996,"size":1871359,"metadata":{"time":1781946755740,"url":"https://registry.npmjs.org/oxfmt/-/oxfmt-0.55.0.tgz","reqHeaders":{},"resHeaders":{"cache-control":"public, immutable, max-age=31557600","content-type":"application/octet-stream","date":"Sat, 20 Jun 2026 09:12:35 GMT","etag":"\"954e1dbe238d44968602fd6cd22678ba\"","last-modified":"Mon, 15 Jun 2026 13:36:25 GMT","vary":"Accept-Encoding"},"options":{"compress":true}}}
@@ -1,2 +0,0 @@
1
-
2
- 03f99b58fd73c8220756cf9359e3611091d986fa {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/@oxfmt/binding-linux-x64-gnu/-/binding-linux-x64-gnu-0.55.0.tgz","integrity":"sha512-MihqiPziJNoWy4MqNSV+jVA1g+07iQDjZiR0vaCaDoPgFEiJpCMsxamktzLV07cEeQsSJ04vQaU4CzCQwIvtDA==","time":1781946755979,"size":3283068,"metadata":{"time":1781946755744,"url":"https://registry.npmjs.org/@oxfmt/binding-linux-x64-gnu/-/binding-linux-x64-gnu-0.55.0.tgz","reqHeaders":{},"resHeaders":{"cache-control":"public, must-revalidate, max-age=31557600","content-type":"application/octet-stream","date":"Sat, 20 Jun 2026 09:12:35 GMT","etag":"\"6944748219cd91165852c05d93fddb4b\"","last-modified":"Mon, 15 Jun 2026 13:36:14 GMT","vary":"Accept-Encoding"},"options":{"compress":true}}}
@@ -1,64 +0,0 @@
1
- 0 verbose cli /usr/local/bin/node /usr/local/bin/npm
2
- 1 info using npm@11.16.0
3
- 2 info using node@v26.3.1
4
- 3 silly config load:file:/usr/local/lib/node_modules/npm/npmrc
5
- 4 silly config load:file:/builds/gurso/oxc-config/.npmrc
6
- 5 silly config load:file:/root/.npmrc
7
- 6 silly config load:file:/usr/local/etc/npmrc
8
- 7 verbose title npm ci
9
- 8 verbose argv "ci" "--prefer-offline"
10
- 9 verbose logfile logs-max:10 dir:/builds/gurso/oxc-config/.npm/_logs/2026-06-20T09_12_35_334Z-
11
- 10 verbose logfile /builds/gurso/oxc-config/.npm/_logs/2026-06-20T09_12_35_334Z-debug-0.log
12
- 11 silly logfile done cleaning log files
13
- 12 silly packumentCache heap:2248146944 maxSize:562036736 maxEntrySize:281018368
14
- 13 silly packumentCache heap:2248146944 maxSize:562036736 maxEntrySize:281018368
15
- 14 silly idealTree buildDeps
16
- 15 silly reify moves {}
17
- 16 silly audit bulk request {
18
- 16 silly audit '@oxfmt/binding-android-arm-eabi': [ '0.55.0' ],
19
- 16 silly audit '@oxfmt/binding-android-arm64': [ '0.55.0' ],
20
- 16 silly audit '@oxfmt/binding-darwin-arm64': [ '0.55.0' ],
21
- 16 silly audit '@oxfmt/binding-darwin-x64': [ '0.55.0' ],
22
- 16 silly audit '@oxfmt/binding-freebsd-x64': [ '0.55.0' ],
23
- 16 silly audit '@oxfmt/binding-linux-arm-gnueabihf': [ '0.55.0' ],
24
- 16 silly audit '@oxfmt/binding-linux-arm-musleabihf': [ '0.55.0' ],
25
- 16 silly audit '@oxfmt/binding-linux-arm64-gnu': [ '0.55.0' ],
26
- 16 silly audit '@oxfmt/binding-linux-arm64-musl': [ '0.55.0' ],
27
- 16 silly audit '@oxfmt/binding-linux-ppc64-gnu': [ '0.55.0' ],
28
- 16 silly audit '@oxfmt/binding-linux-riscv64-gnu': [ '0.55.0' ],
29
- 16 silly audit '@oxfmt/binding-linux-riscv64-musl': [ '0.55.0' ],
30
- 16 silly audit '@oxfmt/binding-linux-s390x-gnu': [ '0.55.0' ],
31
- 16 silly audit '@oxfmt/binding-linux-x64-gnu': [ '0.55.0' ],
32
- 16 silly audit '@oxfmt/binding-linux-x64-musl': [ '0.55.0' ],
33
- 16 silly audit '@oxfmt/binding-openharmony-arm64': [ '0.55.0' ],
34
- 16 silly audit '@oxfmt/binding-win32-arm64-msvc': [ '0.55.0' ],
35
- 16 silly audit '@oxfmt/binding-win32-ia32-msvc': [ '0.55.0' ],
36
- 16 silly audit '@oxfmt/binding-win32-x64-msvc': [ '0.55.0' ],
37
- 16 silly audit oxfmt: [ '0.55.0' ],
38
- 16 silly audit tinypool: [ '2.1.0' ],
39
- 16 silly audit typescript: [ '6.0.3' ]
40
- 16 silly audit }
41
- 17 http cache typescript@https://registry.npmjs.org/typescript/-/typescript-6.0.3.tgz 0ms (cache hit)
42
- 18 http cache tinypool@https://registry.npmjs.org/tinypool/-/tinypool-2.1.0.tgz 0ms (cache hit)
43
- 19 http cache oxfmt@https://registry.npmjs.org/oxfmt/-/oxfmt-0.55.0.tgz 0ms (cache hit)
44
- 20 http cache @oxfmt/binding-linux-x64-gnu@https://registry.npmjs.org/@oxfmt/binding-linux-x64-gnu/-/binding-linux-x64-gnu-0.55.0.tgz 0ms (cache hit)
45
- 21 silly tarball no local data for typescript@https://registry.npmjs.org/typescript/-/typescript-6.0.3.tgz. Extracting by manifest.
46
- 22 silly tarball no local data for tinypool@https://registry.npmjs.org/tinypool/-/tinypool-2.1.0.tgz. Extracting by manifest.
47
- 23 silly tarball no local data for oxfmt@https://registry.npmjs.org/oxfmt/-/oxfmt-0.55.0.tgz. Extracting by manifest.
48
- 24 silly tarball no local data for @oxfmt/binding-linux-x64-gnu@https://registry.npmjs.org/@oxfmt/binding-linux-x64-gnu/-/binding-linux-x64-gnu-0.55.0.tgz. Extracting by manifest.
49
- 25 http fetch GET 200 https://registry.npmjs.org/tinypool/-/tinypool-2.1.0.tgz 142ms (cache miss)
50
- 26 http fetch POST 200 https://registry.npmjs.org/-/npm/v1/security/advisories/bulk 189ms
51
- 27 silly audit report {}
52
- 28 http fetch GET 200 https://registry.npmjs.org/@oxfmt/binding-linux-x64-gnu/-/binding-linux-x64-gnu-0.55.0.tgz 330ms (cache miss)
53
- 29 http fetch GET 200 https://registry.npmjs.org/oxfmt/-/oxfmt-0.55.0.tgz 347ms (cache miss)
54
- 30 http fetch GET 200 https://registry.npmjs.org/typescript/-/typescript-6.0.3.tgz 460ms (cache miss)
55
- 31 silly ADD node_modules/typescript
56
- 32 silly ADD node_modules/tinypool
57
- 33 silly ADD node_modules/oxfmt
58
- 34 silly ADD node_modules/@oxfmt/binding-linux-x64-gnu
59
- 35 verbose cwd /builds/gurso/oxc-config
60
- 36 verbose os Linux 5.15.154+
61
- 37 verbose node v26.3.1
62
- 38 verbose npm v11.16.0
63
- 39 verbose exit 0
64
- 40 info ok
@@ -1,18 +0,0 @@
1
- 0 verbose cli /usr/local/bin/node /usr/local/bin/npm
2
- 1 info using npm@11.16.0
3
- 2 info using node@v26.3.1
4
- 3 silly config load:file:/usr/local/lib/node_modules/npm/npmrc
5
- 4 silly config load:file:/builds/gurso/oxc-config/.npmrc
6
- 5 silly config load:file:/root/.npmrc
7
- 6 silly config load:file:/usr/local/etc/npmrc
8
- 7 verbose title npm run typecheck
9
- 8 verbose argv "run" "typecheck"
10
- 9 verbose logfile logs-max:10 dir:/builds/gurso/oxc-config/.npm/_logs/2026-06-20T09_12_36_201Z-
11
- 10 verbose logfile /builds/gurso/oxc-config/.npm/_logs/2026-06-20T09_12_36_201Z-debug-0.log
12
- 11 silly logfile done cleaning log files
13
- 12 verbose cwd /builds/gurso/oxc-config
14
- 13 verbose os Linux 5.15.154+
15
- 14 verbose node v26.3.1
16
- 15 verbose npm v11.16.0
17
- 16 verbose exit 0
18
- 17 info ok
@@ -1,56 +0,0 @@
1
- 0 verbose cli /usr/local/bin/node /usr/local/bin/npm
2
- 1 info using npm@11.16.0
3
- 2 info using node@v26.3.1
4
- 3 silly config load:file:/usr/local/lib/node_modules/npm/npmrc
5
- 4 silly config load:file:/builds/gurso/oxc-config/.npmrc
6
- 5 silly config load:file:/root/.npmrc
7
- 6 silly config load:file:/usr/local/etc/npmrc
8
- 7 verbose title npm ci
9
- 8 verbose argv "ci" "--prefer-offline"
10
- 9 verbose logfile logs-max:10 dir:/builds/gurso/oxc-config/.npm/_logs/2026-06-20T09_13_10_710Z-
11
- 10 verbose logfile /builds/gurso/oxc-config/.npm/_logs/2026-06-20T09_13_10_710Z-debug-0.log
12
- 11 silly logfile done cleaning log files
13
- 12 silly packumentCache heap:2248146944 maxSize:562036736 maxEntrySize:281018368
14
- 13 silly packumentCache heap:2248146944 maxSize:562036736 maxEntrySize:281018368
15
- 14 silly idealTree buildDeps
16
- 15 silly reify moves {}
17
- 16 silly audit bulk request {
18
- 16 silly audit '@oxfmt/binding-android-arm-eabi': [ '0.55.0' ],
19
- 16 silly audit '@oxfmt/binding-android-arm64': [ '0.55.0' ],
20
- 16 silly audit '@oxfmt/binding-darwin-arm64': [ '0.55.0' ],
21
- 16 silly audit '@oxfmt/binding-darwin-x64': [ '0.55.0' ],
22
- 16 silly audit '@oxfmt/binding-freebsd-x64': [ '0.55.0' ],
23
- 16 silly audit '@oxfmt/binding-linux-arm-gnueabihf': [ '0.55.0' ],
24
- 16 silly audit '@oxfmt/binding-linux-arm-musleabihf': [ '0.55.0' ],
25
- 16 silly audit '@oxfmt/binding-linux-arm64-gnu': [ '0.55.0' ],
26
- 16 silly audit '@oxfmt/binding-linux-arm64-musl': [ '0.55.0' ],
27
- 16 silly audit '@oxfmt/binding-linux-ppc64-gnu': [ '0.55.0' ],
28
- 16 silly audit '@oxfmt/binding-linux-riscv64-gnu': [ '0.55.0' ],
29
- 16 silly audit '@oxfmt/binding-linux-riscv64-musl': [ '0.55.0' ],
30
- 16 silly audit '@oxfmt/binding-linux-s390x-gnu': [ '0.55.0' ],
31
- 16 silly audit '@oxfmt/binding-linux-x64-gnu': [ '0.55.0' ],
32
- 16 silly audit '@oxfmt/binding-linux-x64-musl': [ '0.55.0' ],
33
- 16 silly audit '@oxfmt/binding-openharmony-arm64': [ '0.55.0' ],
34
- 16 silly audit '@oxfmt/binding-win32-arm64-msvc': [ '0.55.0' ],
35
- 16 silly audit '@oxfmt/binding-win32-ia32-msvc': [ '0.55.0' ],
36
- 16 silly audit '@oxfmt/binding-win32-x64-msvc': [ '0.55.0' ],
37
- 16 silly audit oxfmt: [ '0.55.0' ],
38
- 16 silly audit tinypool: [ '2.1.0' ],
39
- 16 silly audit typescript: [ '6.0.3' ]
40
- 16 silly audit }
41
- 17 http cache typescript@https://registry.npmjs.org/typescript/-/typescript-6.0.3.tgz 0ms (cache hit)
42
- 18 http cache tinypool@https://registry.npmjs.org/tinypool/-/tinypool-2.1.0.tgz 0ms (cache hit)
43
- 19 http cache oxfmt@https://registry.npmjs.org/oxfmt/-/oxfmt-0.55.0.tgz 0ms (cache hit)
44
- 20 http cache @oxfmt/binding-linux-x64-gnu@https://registry.npmjs.org/@oxfmt/binding-linux-x64-gnu/-/binding-linux-x64-gnu-0.55.0.tgz 0ms (cache hit)
45
- 21 http fetch POST 200 https://registry.npmjs.org/-/npm/v1/security/advisories/bulk 338ms
46
- 22 silly audit report {}
47
- 23 silly ADD node_modules/typescript
48
- 24 silly ADD node_modules/tinypool
49
- 25 silly ADD node_modules/oxfmt
50
- 26 silly ADD node_modules/@oxfmt/binding-linux-x64-gnu
51
- 27 verbose cwd /builds/gurso/oxc-config
52
- 28 verbose os Linux 5.15.154+
53
- 29 verbose node v26.3.1
54
- 30 verbose npm v11.16.0
55
- 31 verbose exit 0
56
- 32 info ok
@@ -1,18 +0,0 @@
1
- 0 verbose cli /usr/local/bin/node /usr/local/bin/npm
2
- 1 info using npm@11.16.0
3
- 2 info using node@v26.3.1
4
- 3 silly config load:file:/usr/local/lib/node_modules/npm/npmrc
5
- 4 silly config load:file:/builds/gurso/oxc-config/.npmrc
6
- 5 silly config load:file:/root/.npmrc
7
- 6 silly config load:file:/usr/local/etc/npmrc
8
- 7 verbose title npm run build
9
- 8 verbose argv "run" "build"
10
- 9 verbose logfile logs-max:10 dir:/builds/gurso/oxc-config/.npm/_logs/2026-06-20T09_13_11_434Z-
11
- 10 verbose logfile /builds/gurso/oxc-config/.npm/_logs/2026-06-20T09_13_11_434Z-debug-0.log
12
- 11 silly logfile done cleaning log files
13
- 12 verbose cwd /builds/gurso/oxc-config
14
- 13 verbose os Linux 5.15.154+
15
- 14 verbose node v26.3.1
16
- 15 verbose npm v11.16.0
17
- 16 verbose exit 0
18
- 17 info ok
@@ -1,15 +0,0 @@
1
- 0 verbose cli /usr/local/bin/node /usr/local/bin/npm
2
- 1 info using npm@11.16.0
3
- 2 info using node@v26.3.1
4
- 3 silly config load:file:/usr/local/lib/node_modules/npm/npmrc
5
- 4 silly config load:file:/builds/gurso/oxc-config/.npmrc
6
- 5 silly config load:file:/root/.npmrc
7
- 6 silly config load:file:/usr/local/etc/npmrc
8
- 7 verbose title npm publish
9
- 8 verbose argv "publish" "--access" "public"
10
- 9 verbose logfile logs-max:10 dir:/builds/gurso/oxc-config/.npm/_logs/2026-06-20T09_13_11_963Z-
11
- 10 verbose logfile /builds/gurso/oxc-config/.npm/_logs/2026-06-20T09_13_11_963Z-debug-0.log
12
- 11 silly logfile done cleaning log files
13
- 12 verbose publish [ '.' ]
14
- 13 silly packumentCache heap:2248146944 maxSize:562036736 maxEntrySize:281018368
15
- 14 warn gitignore-fallback No .npmignore file found, using .gitignore for file exclusion. Consider creating a .npmignore file to explicitly control published files.
package/index.ts DELETED
@@ -1,3 +0,0 @@
1
- import fmt from "./oxfmt.config.js"
2
-
3
- export default { fmt }
package/oxfmt.config.ts DELETED
@@ -1,9 +0,0 @@
1
- import { defineConfig } from "oxfmt"
2
-
3
- export default defineConfig({
4
- bracketSameLine: true,
5
- useTabs: true,
6
- semi: false,
7
- sortTailwindcss: true,
8
- arrowParens: "avoid",
9
- })
package/tsconfig.json DELETED
@@ -1,23 +0,0 @@
1
- {
2
- "compilerOptions": {
3
- "rootDir": "./",
4
- // "outDir": "./dist",
5
-
6
- "target": "ES2020",
7
- "lib": ["ESNext"],
8
- "module": "nodenext",
9
- "moduleResolution": "nodenext",
10
- "esModuleInterop": true,
11
- "allowSyntheticDefaultImports": true,
12
-
13
- "noUncheckedIndexedAccess": true,
14
- "exactOptionalPropertyTypes": true,
15
-
16
- "strict": true,
17
- "verbatimModuleSyntax": true,
18
- "isolatedModules": true,
19
- "noUncheckedSideEffectImports": true,
20
- "moduleDetection": "force",
21
- "skipLibCheck": true
22
- }
23
- }