@karmaniverous/smoz 0.1.7 → 0.1.8

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
@@ -185,5 +185,5 @@
185
185
  "templates:lint": "eslint --fix -c templates/.check/eslint.templates.config.ts \"templates/**/*.{ts,tsx,js,jsx}\" && eslint --fix --no-ignore templates/.check/eslint.templates.config.ts"
186
186
  },
187
187
  "type": "module",
188
- "version": "0.1.7"
188
+ "version": "0.1.8"
189
189
  }
@@ -1,21 +1,22 @@
1
1
  {
2
2
  "dependencies": {
3
- "zod": "^4.1.5",
4
- "@middy/core": "^6.4.4"
3
+ "@middy/core": "^6.4.4",
4
+ "zod": "^4.1.5"
5
5
  },
6
6
  "devDependencies": {
7
- "typescript": "^5.9.2",
8
- "typescript-eslint": "^8.41.0",
9
7
  "eslint": "^9.34.0",
10
8
  "eslint-config-prettier": "^10.1.8",
11
9
  "eslint-plugin-prettier": "^5.5.4",
12
10
  "eslint-plugin-simple-import-sort": "^12.1.1",
13
- "vitest": "^3.2.4",
14
- "typedoc": "^0.28.11"
11
+ "jiti": "^2.5.1",
12
+ "typedoc": "^0.28.11",
13
+ "typescript": "^5.9.2",
14
+ "typescript-eslint": "^8.41.0",
15
+ "vitest": "^3.2.4"
15
16
  },
16
17
  "scripts": {
17
- "typecheck": "tsc -p tsconfig.json --noEmit",
18
18
  "lint": "eslint .",
19
- "lint:fix": "eslint --fix ."
19
+ "lint:fix": "eslint --fix .",
20
+ "typecheck": "tsc -p tsconfig.json --noEmit"
20
21
  }
21
22
  }
@@ -1,19 +1,22 @@
1
1
  {
2
2
  "dependencies": {
3
- "zod": "^4.1.5",
4
- "@middy/core": "^6.4.4"
3
+ "@middy/core": "^6.4.4",
4
+ "zod": "^4.1.5"
5
5
  },
6
6
  "devDependencies": {
7
- "typescript": "^5.9.2",
8
- "typescript-eslint": "^8.41.0",
9
7
  "eslint": "^9.34.0",
10
8
  "eslint-config-prettier": "^10.1.8",
11
9
  "eslint-plugin-prettier": "^5.5.4",
12
- "eslint-plugin-simple-import-sort": "^12.1.1"
10
+ "eslint-plugin-simple-import-sort": "^12.1.1",
11
+ "jiti": "^2.5.1",
12
+ "typescript": "^5.9.2",
13
+ "typescript-eslint": "^8.41.0",
14
+ "vitest": "^3.2.4"
13
15
  },
14
16
  "scripts": {
15
- "typecheck": "tsc -p tsconfig.json --noEmit",
16
17
  "lint": "eslint .",
17
- "lint:fix": "eslint --fix ."
18
+ "lint:fix": "eslint --fix .",
19
+ "test": "vitest run",
20
+ "typecheck": "tsc -p tsconfig.json --noEmit"
18
21
  }
19
22
  }
@@ -1,23 +1,24 @@
1
1
  {
2
2
  "dependencies": {
3
- "zod": "^4.1.5",
4
- "@middy/core": "^6.4.4"
3
+ "@middy/core": "^6.4.4",
4
+ "zod": "^4.1.5"
5
5
  },
6
6
  "devDependencies": {
7
- "typescript": "^5.9.2",
8
- "typescript-eslint": "^8.41.0",
9
7
  "eslint": "^9.34.0",
10
8
  "eslint-config-prettier": "^10.1.8",
11
9
  "eslint-plugin-prettier": "^5.5.4",
12
10
  "eslint-plugin-simple-import-sort": "^12.1.1",
13
- "vitest": "^3.2.4",
14
- "typedoc": "^0.28.11"
11
+ "jiti": "^2.5.1",
12
+ "typedoc": "^0.28.11",
13
+ "typescript": "^5.9.2",
14
+ "typescript-eslint": "^8.41.0",
15
+ "vitest": "^3.2.4"
15
16
  },
16
17
  "scripts": {
17
- "typecheck": "tsc -p tsconfig.json --noEmit",
18
+ "docs": "typedoc",
18
19
  "lint": "eslint .",
19
20
  "lint:fix": "eslint --fix .",
20
21
  "test": "vitest run",
21
- "docs": "typedoc"
22
+ "typecheck": "tsc -p tsconfig.json --noEmit"
22
23
  }
23
24
  }
@@ -0,0 +1,8 @@
1
+ {
2
+ "recommendations": [
3
+ "dbaeumer.vscode-eslint",
4
+ "esbenp.prettier-vscode",
5
+ "redhat.vscode-yaml",
6
+ "vitest.explorer"
7
+ ]
8
+ }
@@ -0,0 +1,23 @@
1
+ {
2
+ "[markdown]": {
3
+ "editor.wordWrap": "bounded"
4
+ },
5
+ "diffEditor.ignoreTrimWhitespace": false,
6
+ "editor.defaultFormatter": "esbenp.prettier-vscode",
7
+ "editor.formatOnPaste": true,
8
+ "editor.formatOnSave": true,
9
+ "eslint.useFlatConfig": true,
10
+ "eslint.validate": [
11
+ "javascript",
12
+ "javascriptreact",
13
+ "typescript",
14
+ "typescriptreact"
15
+ ],
16
+ "git.autofetch": true,
17
+ "git.enableSmartCommit": true,
18
+ "javascript.preferences.importModuleSpecifierEnding": "minimal",
19
+ "javascript.updateImportsOnFileMove.enabled": "always",
20
+ "prettier.prettierPath": "./node_modules/prettier",
21
+ "prettier.singleQuote": true,
22
+ "yaml.format.singleQuote": true
23
+ }
@@ -0,0 +1,7 @@
1
+ import { describe, expect, it } from 'vitest';
2
+
3
+ describe('template smoke', () => {
4
+ it('runs vitest', () => {
5
+ expect(1 + 1).toBe(2);
6
+ });
7
+ });
@@ -0,0 +1,46 @@
1
+ {
2
+ "$schema": "https://developer.microsoft.com/json-schemas/tsdoc/v0/tsdoc.schema.json",
3
+ "noStandardTags": false,
4
+ "tagDefinitions": [
5
+ { "tagName": "@author", "syntaxKind": "block" },
6
+ { "tagName": "@module", "syntaxKind": "block" },
7
+ { "tagName": "@type", "syntaxKind": "block" },
8
+ { "tagName": "@typedef", "syntaxKind": "block" },
9
+ { "tagName": "@callback", "syntaxKind": "block" },
10
+ { "tagName": "@prop", "syntaxKind": "block", "allowMultiple": true },
11
+ { "tagName": "@property", "syntaxKind": "block", "allowMultiple": true },
12
+ { "tagName": "@group", "syntaxKind": "block", "allowMultiple": true },
13
+ { "tagName": "@groupDescription", "syntaxKind": "block", "allowMultiple": true },
14
+ { "tagName": "@category", "syntaxKind": "block", "allowMultiple": true },
15
+ { "tagName": "@categoryDescription", "syntaxKind": "block", "allowMultiple": true },
16
+ { "tagName": "@hidden", "syntaxKind": "modifier" },
17
+ { "tagName": "@ignore", "syntaxKind": "modifier" },
18
+ { "tagName": "@class", "syntaxKind": "modifier" },
19
+ { "tagName": "@document", "syntaxKind": "block" },
20
+ { "tagName": "@default", "syntaxKind": "block" },
21
+ { "tagName": "@extends", "syntaxKind": "block" },
22
+ { "tagName": "@augments", "syntaxKind": "block" },
23
+ { "tagName": "@return", "syntaxKind": "block" },
24
+ { "tagName": "@yields", "syntaxKind": "block" },
25
+ { "tagName": "@enum", "syntaxKind": "modifier" },
26
+ { "tagName": "@event", "syntaxKind": "modifier" },
27
+ { "tagName": "@template", "syntaxKind": "block", "allowMultiple": true },
28
+ { "tagName": "@linkcode", "syntaxKind": "inline", "allowMultiple": true },
29
+ { "tagName": "@linkplain", "syntaxKind": "inline", "allowMultiple": true },
30
+ { "tagName": "@private", "syntaxKind": "modifier" },
31
+ { "tagName": "@protected", "syntaxKind": "modifier" },
32
+ { "tagName": "@satisfies", "syntaxKind": "block" },
33
+ { "tagName": "@since", "syntaxKind": "block" },
34
+ { "tagName": "@license", "syntaxKind": "block" },
35
+ { "tagName": "@import", "syntaxKind": "block" },
36
+ { "tagName": "@overload", "syntaxKind": "modifier" },
37
+ { "tagName": "@namespace", "syntaxKind": "modifier" },
38
+ { "tagName": "@interface", "syntaxKind": "modifier" },
39
+ { "tagName": "@showCategories", "syntaxKind": "modifier" },
40
+ { "tagName": "@hideCategories", "syntaxKind": "modifier" },
41
+ { "tagName": "@showGroups", "syntaxKind": "modifier" },
42
+ { "tagName": "@hideGroups", "syntaxKind": "modifier" },
43
+ { "tagName": "@hideconstructor", "syntaxKind": "modifier" },
44
+ { "tagName": "@jsx", "syntaxKind": "block" }
45
+ ]
46
+ }