@4mbl/lint 0.0.0-beta.9ccdfbe → 0.1.0

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 (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +5 -5
package/README.md CHANGED
@@ -19,7 +19,7 @@ npm install -D @4mbl/lint
19
19
  Create a `eslint.config.ts` file in the root of your project with the desired configuration. This package currently uses eslint. That might change in a future major release.
20
20
 
21
21
  ```js
22
- import defaultConfig, { type Config } from '@4mbl/lint/next'; // <-- change `next` to the desired template
22
+ import defaultConfig, { Config } from '@4mbl/lint/next'; // <-- change `next` to the desired template
23
23
 
24
24
  export default [...defaultConfig] satisfies Config[];
25
25
  ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@4mbl/lint",
3
- "version": "0.0.0-beta.9ccdfbe",
3
+ "version": "0.1.0",
4
4
  "description": "Linting configuration for various environments.",
5
5
  "type": "module",
6
6
  "author": "4mbl",
@@ -23,13 +23,13 @@
23
23
  "keywords": [
24
24
  "lint"
25
25
  ],
26
- "dependencies": {
26
+ "scripts": {},
27
+ "devDependencies": {
27
28
  "@eslint/js": "^9.38.0",
28
29
  "eslint": "^9.38.0",
29
30
  "eslint-config-next": "^16.0.1",
30
31
  "eslint-plugin-react-compiler": "19.1.0-rc.2",
31
32
  "jiti": "^2.6.1",
32
33
  "typescript-eslint": "^8.46.2"
33
- },
34
- "scripts": {}
35
- }
34
+ }
35
+ }