@oxlint-types/define-config 0.0.0 → 0.0.1

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.
package/dist/index.js CHANGED
@@ -2,6 +2,5 @@
2
2
  function defineConfig(config) {
3
3
  return config;
4
4
  }
5
-
6
5
  //#endregion
7
- export { defineConfig };
6
+ export { defineConfig };
package/package.json CHANGED
@@ -1,8 +1,7 @@
1
1
  {
2
2
  "name": "@oxlint-types/define-config",
3
3
  "type": "module",
4
- "version": "0.0.0",
5
- "packageManager": "pnpm@10.30.3",
4
+ "version": "0.0.1",
6
5
  "description": "Strong typed `defineConfig` function support for oxlint.",
7
6
  "keywords": [
8
7
  "oxlint",
@@ -35,36 +34,35 @@
35
34
  "access": "public"
36
35
  },
37
36
  "sideEffects": false,
37
+ "devDependencies": {
38
+ "@ntnyq/tsconfig": "^3.1.0",
39
+ "@types/node": "^25.6.2",
40
+ "@typescript/native-preview": "^7.0.0-dev.20260508.1",
41
+ "bumpp": "^11.1.0",
42
+ "husky": "^9.1.7",
43
+ "nano-staged": "^1.0.2",
44
+ "npm-run-all2": "^8.0.4",
45
+ "oxfmt": "^0.48.0",
46
+ "oxlint": "^1.63.0",
47
+ "tsdown": "^0.22.0",
48
+ "tsx": "^4.21.0",
49
+ "vitest": "^4.1.5"
50
+ },
51
+ "nano-staged": {
52
+ "*.{js,ts,mjs,tsx,vue}": "oxlint --fix",
53
+ "*": "oxfmt --no-error-on-unmatched-pattern"
54
+ },
38
55
  "scripts": {
39
56
  "build": "tsdown",
40
57
  "dev": "tsdown --watch",
41
58
  "format": "oxfmt",
42
59
  "format:check": "oxfmt --check",
43
60
  "lint": "oxlint",
44
- "prepare": "husky",
45
- "prepublishOnly": "pnpm run build",
61
+ "rules:generate": "tsx ./scripts/generate-rules.ts",
46
62
  "release": "run-s release:check release:version",
47
63
  "release:check": "run-s format:check lint typecheck test",
48
64
  "release:version": "bumpp",
49
65
  "test": "vitest",
50
66
  "typecheck": "tsgo --noEmit"
51
- },
52
- "devDependencies": {
53
- "@ntnyq/tsconfig": "^3.1.0",
54
- "@types/node": "^25.3.3",
55
- "@typescript/native-preview": "^7.0.0-dev.20260301.1",
56
- "bumpp": "^10.4.1",
57
- "husky": "^9.1.7",
58
- "nano-staged": "^0.9.0",
59
- "npm-run-all2": "^8.0.4",
60
- "oxfmt": "^0.35.0",
61
- "oxlint": "^1.50.0",
62
- "tsdown": "^0.21.0-beta.2",
63
- "typescript": "^5.9.3",
64
- "vitest": "^4.0.18"
65
- },
66
- "nano-staged": {
67
- "*.{js,ts,mjs,tsx,vue}": "oxlint --fix",
68
- "*": "oxfmt --no-error-on-unmatched-pattern"
69
67
  }
70
- }
68
+ }