@stacksjs/lint 0.51.0 → 0.52.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/README.md CHANGED
@@ -43,7 +43,7 @@ pnpm test
43
43
 
44
44
  Please see our [releases](https://github.com/stacksjs/stacks/releases) page for more information on what has changed recently.
45
45
 
46
- ## 💪🏼 Contributing
46
+ ## 🚜 Contributing
47
47
 
48
48
  Please review the [Contributing Guide](https://github.com/stacksjs/contributing) for details.
49
49
 
package/dist/index.d.ts CHANGED
@@ -1,2 +1,2 @@
1
1
  import eslint from 'eslint';
2
- export default eslint;
2
+ export { eslint };
package/dist/index.mjs CHANGED
@@ -1,2 +1,2 @@
1
1
  import eslint from "eslint";
2
- export default eslint;
2
+ export { eslint };
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "@stacksjs/lint",
3
3
  "type": "module",
4
- "version": "0.51.0",
5
- "packageManager": "pnpm@7.26.3",
4
+ "version": "0.52.1",
5
+ "packageManager": "pnpm@8.5.1",
6
6
  "description": "The Stacks way to lint.",
7
7
  "author": "Chris Breuer",
8
8
  "license": "MIT",
@@ -24,7 +24,12 @@
24
24
  "zero-config",
25
25
  "stacks"
26
26
  ],
27
- "main": "dist/index.mjs",
27
+ "exports": {
28
+ ".": {
29
+ "types": "./dist/index.d.ts",
30
+ "import": "./dist/index.mjs"
31
+ }
32
+ },
28
33
  "module": "dist/index.mjs",
29
34
  "types": "dist/index.d.ts",
30
35
  "contributors": [
@@ -34,24 +39,19 @@
34
39
  "dist",
35
40
  "README.md"
36
41
  ],
37
- "engines": {
38
- "node": ">=v18.14.0",
39
- "pnpm": ">=7.26.3"
40
- },
41
42
  "peerDependencies": {
42
- "@ow3/eslint-config": "^0.35.2",
43
- "@types/eslint": "^8.21.0",
44
- "eslint": "^8.33.0",
45
- "lint-staged": "^13.1.0"
43
+ "@ow3/eslint-config": "^0.42.2",
44
+ "@types/eslint": "^8.37.0",
45
+ "eslint": "^8.41.0",
46
+ "lint-staged": "^13.2.2",
47
+ "publint": "^0.1.11"
46
48
  },
47
49
  "devDependencies": {
48
- "mkdist": "^1.1.0",
49
- "typescript": "^4.9.5",
50
- "@stacksjs/testing": "0.51.0"
50
+ "@stacksjs/development": "0.52.1"
51
51
  },
52
52
  "scripts": {
53
- "build": "mkdist -d",
54
- "dev": "mkdist -d",
53
+ "build": "unbuild",
54
+ "dev": "unbuild --stub",
55
55
  "typecheck": "tsc --noEmit"
56
56
  }
57
57
  }