zirka 0.0.28 → 0.0.29

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/package.json CHANGED
@@ -1,7 +1,11 @@
1
1
  {
2
2
  "name": "zirka",
3
- "version": "0.0.28",
3
+ "version": "0.0.29",
4
4
  "description": "",
5
+ "repository": {
6
+ "type": "git",
7
+ "url": "https://github.com/Bredansky/zirka"
8
+ },
5
9
  "license": "ISC",
6
10
  "author": "",
7
11
  "type": "module",
@@ -22,7 +26,8 @@
22
26
  "build": "tsup",
23
27
  "check": "npm run fix && npm run typecheck",
24
28
  "fix": "eslint . --fix",
25
- "prepare": "husky"
29
+ "prepare": "husky",
30
+ "typecheck": "tsc -p tsconfig.json --noEmit"
26
31
  },
27
32
  "lint-staged": {
28
33
  "!(*.ts|*.mts|*.cts|*.tsx|*.js|*.cjs|*.mjs|*.jsx)": "prettier --write --ignore-unknown",
@@ -1,18 +1,18 @@
1
- declare module "@next/eslint-plugin-next" {
2
- import type { ESLint, Linter } from "eslint";
3
-
4
- interface NextESLintPlugin extends ESLint.Plugin {
5
- configs: {
6
- recommended: {
7
- rules: Linter.RulesRecord;
8
- };
9
- "core-web-vitals": {
10
- rules: Linter.RulesRecord;
11
- };
12
- };
13
- }
14
-
15
- const plugin: NextESLintPlugin;
16
- // eslint-disable-next-line import/no-default-export -- @next/eslint-plugin-next exports plugin by default
17
- export default plugin;
18
- }
1
+ declare module "@next/eslint-plugin-next" {
2
+ import type { ESLint, Linter } from "eslint";
3
+
4
+ interface NextESLintPlugin extends ESLint.Plugin {
5
+ configs: {
6
+ recommended: {
7
+ rules: Linter.RulesRecord;
8
+ };
9
+ "core-web-vitals": {
10
+ rules: Linter.RulesRecord;
11
+ };
12
+ };
13
+ }
14
+
15
+ const plugin: NextESLintPlugin;
16
+ // eslint-disable-next-line import/no-default-export -- @next/eslint-plugin-next exports plugin by default
17
+ export default plugin;
18
+ }
@@ -1,5 +1,5 @@
1
- declare module "@eslint-community/eslint-plugin-eslint-comments/configs" {
2
- import type { Linter } from "eslint";
3
-
4
- const recommended: Linter.Config;
5
- }
1
+ declare module "@eslint-community/eslint-plugin-eslint-comments/configs" {
2
+ import type { Linter } from "eslint";
3
+
4
+ const recommended: Linter.Config;
5
+ }
@@ -1,7 +1,7 @@
1
- declare module "eslint-plugin-import" {
2
- import type { Linter } from "eslint";
3
-
4
- const flatConfigs: {
5
- recommended: Linter.Config;
6
- };
7
- }
1
+ declare module "eslint-plugin-import" {
2
+ import type { Linter } from "eslint";
3
+
4
+ const flatConfigs: {
5
+ recommended: Linter.Config;
6
+ };
7
+ }