@filigran/chatbot 1.1.1 → 1.1.2

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.
@@ -0,0 +1,23 @@
1
+ import type { Config } from 'eslint/config';
2
+ import { defineConfig } from 'eslint/config';
3
+ import js from '@eslint/js';
4
+ import tseslint from 'typescript-eslint';
5
+ import solid from 'eslint-plugin-solid/configs/typescript';
6
+ import prettier from 'eslint-config-prettier';
7
+
8
+ export default defineConfig([
9
+ {
10
+ ignores: ['**/*.md'],
11
+ },
12
+ js.configs.recommended,
13
+ tseslint.configs.recommended,
14
+ solid as unknown as Config,
15
+ {
16
+ rules: {
17
+ // Custom overrides
18
+ 'solid/no-innerhtml': 'off',
19
+ '@typescript-eslint/no-explicit-any': 'off',
20
+ },
21
+ },
22
+ prettier,
23
+ ]);
package/package.json CHANGED
@@ -7,7 +7,7 @@
7
7
  "type": "git",
8
8
  "url": "git+https://github.com/FiligranHQ/filigran-ui.git"
9
9
  },
10
- "version": "1.1.1",
10
+ "version": "1.1.2",
11
11
  "type": "module",
12
12
  "exports": {
13
13
  ".": {
@@ -18,6 +18,7 @@
18
18
  "scripts": {
19
19
  "dev": "NODE_ENV=development rollup --watch --config rollup.config.js",
20
20
  "build": "NODE_ENV=production rollup --config rollup.config.js",
21
+ "check-ts": "tsc --noEmit",
21
22
  "lint": "eslint \"src/**/*.ts*\"",
22
23
  "lint-fix": "eslint --fix \"src/**/*.ts*\"",
23
24
  "format": "prettier --write \"**/*.{js,jsx,ts,tsx,md,mdx}\"",
@@ -28,13 +29,13 @@
28
29
  "@microsoft/fetch-event-source": "2.0.1",
29
30
  "@ts-stack/markdown": "1.5.0",
30
31
  "device-detector-js": "3.0.3",
31
- "lodash": "4.17.21",
32
+ "lodash": "4.17.23",
32
33
  "solid-element": "1.9.1",
33
- "solid-js": "1.9.10",
34
+ "solid-js": "1.9.11",
34
35
  "uuid": "13.0.0"
35
36
  },
36
37
  "devDependencies": {
37
- "@babel/core": "7.28.5",
38
+ "@babel/core": "7.28.6",
38
39
  "@babel/preset-typescript": "7.28.5",
39
40
  "@rollup/plugin-babel": "6.1.0",
40
41
  "@rollup/plugin-commonjs": "29.0.0",
@@ -43,30 +44,28 @@
43
44
  "@rollup/plugin-terser": "0.4.4",
44
45
  "@rollup/plugin-typescript": "12.3.0",
45
46
  "@tailwindcss/typography": "0.5.19",
46
- "@types/lodash": "4.17.21",
47
- "@types/node": "24.10.1",
48
- "@types/uuid": "11.0.0",
49
- "@typescript-eslint/eslint-plugin": "8.50.0",
50
- "@typescript-eslint/parser": "8.50.0",
47
+ "@types/lodash": "4.17.23",
48
+ "@types/node": "24.10.9",
51
49
  "autoprefixer": "10.4.23",
52
50
  "babel-plugin-lodash": "3.3.4",
53
51
  "babel-preset-solid": "1.9.10",
54
- "eslint": "8.57.1",
52
+ "eslint": "9.39.2",
55
53
  "eslint-config-next": "15.5.9",
56
54
  "eslint-config-prettier": "10.1.8",
57
- "eslint-plugin-prettier": "5.5.4",
58
55
  "eslint-plugin-solid": "0.14.5",
56
+ "jiti": "2.6.1",
59
57
  "postcss": "8.5.6",
60
- "prettier": "3.7.4",
58
+ "prettier": "3.8.1",
61
59
  "react": "19.2.3",
62
- "rollup": "4.53.5",
60
+ "rollup": "4.56.0",
63
61
  "rollup-plugin-dts": "6.3.0",
64
62
  "rollup-plugin-livereload": "2.0.5",
65
63
  "rollup-plugin-postcss": "4.0.2",
66
64
  "rollup-plugin-serve": "3.0.0",
67
65
  "rollup-plugin-typescript-paths": "1.5.0",
68
66
  "rollup-plugin-uglify": "6.0.4",
69
- "tailwindcss": "3.4.18",
70
- "typescript": "5.9.3"
67
+ "tailwindcss": "3.4.19",
68
+ "typescript": "5.9.3",
69
+ "typescript-eslint": "8.53.1"
71
70
  }
72
71
  }
package/.eslintrc.cjs DELETED
@@ -1,14 +0,0 @@
1
- module.exports = {
2
- root: true,
3
- extends: ['eslint:recommended', 'plugin:@typescript-eslint/recommended', 'prettier', 'plugin:solid/typescript'],
4
- plugins: ['@typescript-eslint', 'solid'],
5
- parser: '@typescript-eslint/parser',
6
- ignorePatterns: ['**/*.md'],
7
- rules: {
8
- '@next/next/no-img-element': 'off',
9
- '@next/next/no-html-link-for-pages': 'off',
10
- 'solid/no-innerhtml': 'off',
11
- '@typescript-eslint/no-namespace': 'off',
12
- '@typescript-eslint/no-explicit-any': 'off'
13
- }
14
- }