@lark-apaas/coding-template-vite-react 0.1.16 → 0.1.18

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,12 +1,9 @@
1
1
  {
2
2
  "name": "@lark-apaas/coding-template-vite-react",
3
- "version": "0.1.16",
3
+ "version": "0.1.18",
4
4
  "description": "Vite + React client template for miaoda coding",
5
5
  "type": "module",
6
- "files": [
7
- "template",
8
- "hooks"
9
- ],
6
+ "files": ["template", "hooks"],
10
7
  "scripts": {
11
8
  "validate-manifest": "node ../../../scripts/validate-template.mjs .",
12
9
  "smoke": "node ../../../scripts/smoke-template.mjs .",
@@ -16,12 +13,7 @@
16
13
  "access": "public",
17
14
  "registry": "https://registry.npmjs.org/"
18
15
  },
19
- "keywords": [
20
- "miaoda",
21
- "coding-template",
22
- "vite",
23
- "react"
24
- ],
16
+ "keywords": ["miaoda", "coding-template", "vite", "react"],
25
17
  "license": "MIT",
26
18
  "miaodaTemplate": {
27
19
  "schemaVersion": 1,
@@ -1,34 +1,7 @@
1
- import js from '@eslint/js'
2
- import globals from 'globals'
3
- import reactHooks from 'eslint-plugin-react-hooks'
4
- import reactRefresh from 'eslint-plugin-react-refresh'
5
- import tseslint from 'typescript-eslint'
6
- import { defineConfig, globalIgnores } from 'eslint/config'
1
+ import { globalIgnores } from 'eslint/config'
2
+ import { eslintPresets } from '@lark-apaas/coding-presets-react'
7
3
 
8
- export default defineConfig([
4
+ export default [
9
5
  globalIgnores(['dist', '**/components/ui/**']),
10
- {
11
- files: ['**/*.{ts,tsx}'],
12
- extends: [
13
- js.configs.recommended,
14
- tseslint.configs.recommended,
15
- reactHooks.configs.flat.recommended,
16
- reactRefresh.configs.vite,
17
- ],
18
- languageOptions: {
19
- ecmaVersion: 2020,
20
- globals: globals.browser,
21
- },
22
- rules: {
23
- // 关闭仅语法相关、不影响编译和运行时的规则
24
- 'react-refresh/only-export-components': 'off',
25
- '@typescript-eslint/no-unused-vars': 'off',
26
- '@typescript-eslint/no-explicit-any': 'off',
27
- '@typescript-eslint/no-empty-object-type': 'off',
28
- '@typescript-eslint/no-require-imports': 'off',
29
- 'no-empty': 'off',
30
- 'prefer-const': 'off',
31
- 'no-unused-labels': 'off',
32
- },
33
- },
34
- ])
6
+ ...eslintPresets.client,
7
+ ]
@@ -11,7 +11,7 @@
11
11
  "@formkit/auto-animate": "^0.9.0",
12
12
  "@gsap/react": "^2.1.2",
13
13
  "@hookform/resolvers": "^5.2.2",
14
- "@lark-apaas/client-toolkit-lite": "1.1.7-alpha.27",
14
+ "@lark-apaas/client-toolkit-lite": "1.1.9",
15
15
  "@radix-ui/react-accordion": "^1.2.11",
16
16
  "@radix-ui/react-alert-dialog": "^1.1.14",
17
17
  "@radix-ui/react-aspect-ratio": "^1.1.7",
@@ -69,19 +69,14 @@
69
69
  "zod": "^4.3.6"
70
70
  },
71
71
  "devDependencies": {
72
- "@eslint/js": "^9",
73
- "@lark-apaas/coding-preset-vite-react": "^1.0.2",
74
- "@lark-apaas/coding-presets": "1.0.3-alpha.0",
72
+ "@lark-apaas/coding-preset-vite-react": "^1.0.4",
73
+ "@lark-apaas/coding-presets-react": "^0.1.0",
75
74
  "@types/node": "^24",
76
75
  "@types/react": "^19",
77
76
  "@types/react-dom": "^19",
78
77
  "concurrently": "^9",
79
78
  "eslint": "^9",
80
- "eslint-plugin-react-hooks": "^7",
81
- "eslint-plugin-react-refresh": "^0.5",
82
- "globals": "^17",
83
79
  "typescript": "~5.9",
84
- "typescript-eslint": "^8",
85
80
  "vite": "^8"
86
81
  }
87
82
  },
@@ -99,47 +94,6 @@
99
94
  "node": ">=6.9.0"
100
95
  }
101
96
  },
102
- "node_modules/@babel/compat-data": {
103
- "version": "7.29.7",
104
- "resolved": "https://registry.npmmirror.com/@babel/compat-data/-/compat-data-7.29.7.tgz",
105
- "integrity": "sha512-locTkQyKvwIEgBzVrn8693ebc97F2U8ZHjbXwDXJ5Fn2TCpNwTlKcaKLkdHop5c/icOFE7qt7Q9JC5hnKNa6Gg==",
106
- "dev": true,
107
- "license": "MIT",
108
- "engines": {
109
- "node": ">=6.9.0"
110
- }
111
- },
112
- "node_modules/@babel/core": {
113
- "version": "7.29.7",
114
- "resolved": "https://registry.npmmirror.com/@babel/core/-/core-7.29.7.tgz",
115
- "integrity": "sha512-RgHBCvtjbOK2gXSNBNIkNoEc9qoVEtau3hj8gEqKQuL3HZAibKarWFEI3Lfm6EYKkLalOh8eSrj9b+ch9H/VBA==",
116
- "dev": true,
117
- "license": "MIT",
118
- "dependencies": {
119
- "@babel/code-frame": "^7.29.7",
120
- "@babel/generator": "^7.29.7",
121
- "@babel/helper-compilation-targets": "^7.29.7",
122
- "@babel/helper-module-transforms": "^7.29.7",
123
- "@babel/helpers": "^7.29.7",
124
- "@babel/parser": "^7.29.7",
125
- "@babel/template": "^7.29.7",
126
- "@babel/traverse": "^7.29.7",
127
- "@babel/types": "^7.29.7",
128
- "@jridgewell/remapping": "^2.3.5",
129
- "convert-source-map": "^2.0.0",
130
- "debug": "^4.1.0",
131
- "gensync": "^1.0.0-beta.2",
132
- "json5": "^2.2.3",
133
- "semver": "^6.3.1"
134
- },
135
- "engines": {
136
- "node": ">=6.9.0"
137
- },
138
- "funding": {
139
- "type": "opencollective",
140
- "url": "https://opencollective.com/babel"
141
- }
142
- },
143
97
  "node_modules/@babel/generator": {
144
98
  "version": "7.29.7",
145
99
  "resolved": "https://registry.npmmirror.com/@babel/generator/-/generator-7.29.7.tgz",
@@ -157,23 +111,6 @@
157
111
  "node": ">=6.9.0"
158
112
  }
159
113
  },
160
- "node_modules/@babel/helper-compilation-targets": {
161
- "version": "7.29.7",
162
- "resolved": "https://registry.npmmirror.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.29.7.tgz",
163
- "integrity": "sha512-wem6WaBj4NaVYVdNhLPPVacES6ZJ+KBBfSkTMD3YZxbP3rm3Di85tJU5ljaUNhaOynt+Aj0xruhYuzQBt8n71g==",
164
- "dev": true,
165
- "license": "MIT",
166
- "dependencies": {
167
- "@babel/compat-data": "^7.29.7",
168
- "@babel/helper-validator-option": "^7.29.7",
169
- "browserslist": "^4.24.0",
170
- "lru-cache": "^5.1.1",
171
- "semver": "^6.3.1"
172
- },
173
- "engines": {
174
- "node": ">=6.9.0"
175
- }
176
- },
177
114
  "node_modules/@babel/helper-globals": {
178
115
  "version": "7.29.7",
179
116
  "resolved": "https://registry.npmmirror.com/@babel/helper-globals/-/helper-globals-7.29.7.tgz",
@@ -184,38 +121,6 @@
184
121
  "node": ">=6.9.0"
185
122
  }
186
123
  },
187
- "node_modules/@babel/helper-module-imports": {
188
- "version": "7.29.7",
189
- "resolved": "https://registry.npmmirror.com/@babel/helper-module-imports/-/helper-module-imports-7.29.7.tgz",
190
- "integrity": "sha512-ejHwrQQYcm9xnTivShn2IDOlIzInN34AXskvq9QicvCtEzq1Vzclu/tKF8Jq1Cg8JG2GL6/EmjgsCT7lXepE3g==",
191
- "dev": true,
192
- "license": "MIT",
193
- "dependencies": {
194
- "@babel/traverse": "^7.29.7",
195
- "@babel/types": "^7.29.7"
196
- },
197
- "engines": {
198
- "node": ">=6.9.0"
199
- }
200
- },
201
- "node_modules/@babel/helper-module-transforms": {
202
- "version": "7.29.7",
203
- "resolved": "https://registry.npmmirror.com/@babel/helper-module-transforms/-/helper-module-transforms-7.29.7.tgz",
204
- "integrity": "sha512-UPUVSyXbOh627KiCIGQSgwWzGeBKLkaJ9PJEdrngIwMSzxLR4jS4+f1f1jb7VzBbg8nFLaYotvVPFCTqdrmTAg==",
205
- "dev": true,
206
- "license": "MIT",
207
- "dependencies": {
208
- "@babel/helper-module-imports": "^7.29.7",
209
- "@babel/helper-validator-identifier": "^7.29.7",
210
- "@babel/traverse": "^7.29.7"
211
- },
212
- "engines": {
213
- "node": ">=6.9.0"
214
- },
215
- "peerDependencies": {
216
- "@babel/core": "^7.0.0"
217
- }
218
- },
219
124
  "node_modules/@babel/helper-string-parser": {
220
125
  "version": "7.29.7",
221
126
  "resolved": "https://registry.npmmirror.com/@babel/helper-string-parser/-/helper-string-parser-7.29.7.tgz",
@@ -235,30 +140,6 @@
235
140
  "node": ">=6.9.0"
236
141
  }
237
142
  },
238
- "node_modules/@babel/helper-validator-option": {
239
- "version": "7.29.7",
240
- "resolved": "https://registry.npmmirror.com/@babel/helper-validator-option/-/helper-validator-option-7.29.7.tgz",
241
- "integrity": "sha512-N9ZErrD+yW5geCDtBqnOoxmR8+tNKiGuxKlDpuJxfsqpa2dFcexaziGAE/qoHLiDDreVNMupxGmSoNlyvsA3gw==",
242
- "dev": true,
243
- "license": "MIT",
244
- "engines": {
245
- "node": ">=6.9.0"
246
- }
247
- },
248
- "node_modules/@babel/helpers": {
249
- "version": "7.29.7",
250
- "resolved": "https://registry.npmmirror.com/@babel/helpers/-/helpers-7.29.7.tgz",
251
- "integrity": "sha512-1k2lAGRMfHTcwuNYcCNUmaUffmQv8KWMfh2iJUUeRlwlwH4FdNG7mfPI10NPfLHJFThE4Tyr4mv7kTNZOiPuBg==",
252
- "dev": true,
253
- "license": "MIT",
254
- "dependencies": {
255
- "@babel/template": "^7.29.7",
256
- "@babel/types": "^7.29.7"
257
- },
258
- "engines": {
259
- "node": ">=6.9.0"
260
- }
261
- },
262
143
  "node_modules/@babel/parser": {
263
144
  "version": "7.29.7",
264
145
  "resolved": "https://registry.npmmirror.com/@babel/parser/-/parser-7.29.7.tgz",
@@ -948,37 +829,32 @@
948
829
  "license": "MIT"
949
830
  },
950
831
  "node_modules/@lark-apaas/client-capability": {
951
- "version": "0.1.7-alpha.2",
952
- "resolved": "https://registry.npmmirror.com/@lark-apaas/client-capability/-/client-capability-0.1.7-alpha.2.tgz",
953
- "integrity": "sha512-9jxwjA5VlPug+F+fE3tQ39PBJ6lhC5uCMsTJnwWty0nAmru+UxAnuFkqrHDZIoBBC5qOTvYQ9ARfB5ojerZNMg==",
832
+ "version": "0.1.7",
833
+ "resolved": "https://registry.npmmirror.com/@lark-apaas/client-capability/-/client-capability-0.1.7.tgz",
834
+ "integrity": "sha512-b1SGOa6HkzaBkFdDqkwMWXedKI+wu9QZ+sOYsnOB5Ibk2nz10wHqIVRclZfwHBe0/RkzMgDswTrwV2avNhhfzA==",
954
835
  "license": "MIT",
955
836
  "dependencies": {
956
837
  "@lark-apaas/internal-slardar": "^0.0.3"
957
838
  }
958
839
  },
959
840
  "node_modules/@lark-apaas/client-toolkit-lite": {
960
- "version": "1.1.7-alpha.27",
961
- "resolved": "https://registry.npmmirror.com/@lark-apaas/client-toolkit-lite/-/client-toolkit-lite-1.1.7-alpha.27.tgz",
962
- "integrity": "sha512-NpEaFg/E1DdctwmBnZWNJjpzOYaFG8qEV6L2bMwyxDMWOxrsw3tkdEjnzwo8MDK+9KOWtfU0TNaaQN5Bm3K4Gg==",
841
+ "version": "1.1.9",
842
+ "resolved": "https://registry.npmmirror.com/@lark-apaas/client-toolkit-lite/-/client-toolkit-lite-1.1.9.tgz",
843
+ "integrity": "sha512-uYTT41+n6bZWhvrk3rNrNwyoQca9FYFj+bZGjreVTJE/Ishz52IMBX8xwinDel6Zed5gWp4OBiqiOWTz+4PdJg==",
963
844
  "license": "MIT",
964
845
  "dependencies": {
965
- "@lark-apaas/client-capability": "0.1.7-alpha.2",
846
+ "@lark-apaas/client-capability": "^0.1.7",
966
847
  "@lark-apaas/dataloom": "^0.1.1",
967
848
  "@lark-apaas/internal-slardar": "^0.0.3",
968
849
  "@lark-apaas/miaoda-inspector": "^1.0.23",
969
850
  "@lark-apaas/observable-web": "^1.0.6",
970
- "@radix-ui/react-avatar": "^1.0.4",
971
851
  "@radix-ui/react-dialog": "^1.0.5",
972
852
  "@radix-ui/react-popover": "^1.0.7",
973
- "@radix-ui/react-slot": "^1.0.2",
974
- "@radix-ui/react-tooltip": "^1.0.7",
975
853
  "axios": "^1.12.2",
976
854
  "blueimp-md5": "^2.10.0",
977
- "class-variance-authority": "^0.7.1",
978
855
  "clsx": "^2.0.1",
979
856
  "crypto-js": "^3.1.9-1",
980
857
  "lodash": "^4.17.21",
981
- "lucide-react": "^0.400.0",
982
858
  "penpal": "^6.2.2",
983
859
  "stacktrace-js": "^2.0.2",
984
860
  "tailwind-merge": "^2.0.0"
@@ -993,15 +869,6 @@
993
869
  "react-router-dom": "^6.0.0 || ^7.0.0"
994
870
  }
995
871
  },
996
- "node_modules/@lark-apaas/client-toolkit-lite/node_modules/lucide-react": {
997
- "version": "0.400.0",
998
- "resolved": "https://registry.npmmirror.com/lucide-react/-/lucide-react-0.400.0.tgz",
999
- "integrity": "sha512-rpp7pFHh3Xd93KHixNgB0SqThMHpYNzsGUu69UaQbSZ75Q/J3m5t6EhKyMT3m4w2WOxmJ2mY0tD3vebnXqQryQ==",
1000
- "license": "ISC",
1001
- "peerDependencies": {
1002
- "react": "^16.5.1 || ^17.0.0 || ^18.0.0 || ^19.0.0"
1003
- }
1004
- },
1005
872
  "node_modules/@lark-apaas/client-toolkit-lite/node_modules/tailwind-merge": {
1006
873
  "version": "2.6.1",
1007
874
  "resolved": "https://registry.npmmirror.com/tailwind-merge/-/tailwind-merge-2.6.1.tgz",
@@ -1013,9 +880,9 @@
1013
880
  }
1014
881
  },
1015
882
  "node_modules/@lark-apaas/coding-preset-vite-react": {
1016
- "version": "1.0.2",
1017
- "resolved": "https://registry.npmmirror.com/@lark-apaas/coding-preset-vite-react/-/coding-preset-vite-react-1.0.2.tgz",
1018
- "integrity": "sha512-hjR6zDld/tJss0nAJodfNjondjymedB5xZQZo4NQWt8hNMK1THUsPoShZGKrJf6s3/PwYgU907mEI8aCI1cvGQ==",
883
+ "version": "1.0.4",
884
+ "resolved": "https://registry.npmmirror.com/@lark-apaas/coding-preset-vite-react/-/coding-preset-vite-react-1.0.4.tgz",
885
+ "integrity": "sha512-6Nj/XuTw7bw3MRQnvfiRMfPM40vt5AGJb2yy20u/qf9ig53+MkFwyeuFyaQ9akU6nf+bsMfbxYvh2S7kz7+rtw==",
1019
886
  "dev": true,
1020
887
  "license": "MIT",
1021
888
  "dependencies": {
@@ -1078,10 +945,10 @@
1078
945
  "tslib": "2.3.0"
1079
946
  }
1080
947
  },
1081
- "node_modules/@lark-apaas/coding-presets": {
1082
- "version": "1.0.3-alpha.0",
1083
- "resolved": "https://registry.npmmirror.com/@lark-apaas/coding-presets/-/coding-presets-1.0.3-alpha.0.tgz",
1084
- "integrity": "sha512-c87xAZc+TFrg6pWHL0I67zxxYxmhWm4TIRIBc04Zr0csPPS6nCTmHgd9oOqZ+weoYr91N+0LodmHy5SD0zxfng==",
948
+ "node_modules/@lark-apaas/coding-presets-react": {
949
+ "version": "0.1.0",
950
+ "resolved": "https://registry.npmmirror.com/@lark-apaas/coding-presets-react/-/coding-presets-react-0.1.0.tgz",
951
+ "integrity": "sha512-sYAhoNgCfG7krT1QW1ylgTpv9gAER5cvdU6JOYT2V2li4zfuRQXG9BBcBABZy14PChQuk4nHqBI9shI53pPKoQ==",
1085
952
  "dev": true,
1086
953
  "license": "MIT",
1087
954
  "dependencies": {
@@ -1098,7 +965,7 @@
1098
965
  "eslint": "^9.0.0"
1099
966
  }
1100
967
  },
1101
- "node_modules/@lark-apaas/coding-presets/node_modules/eslint-plugin-react-hooks": {
968
+ "node_modules/@lark-apaas/coding-presets-react/node_modules/eslint-plugin-react-hooks": {
1102
969
  "version": "5.2.0",
1103
970
  "resolved": "https://registry.npmmirror.com/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-5.2.0.tgz",
1104
971
  "integrity": "sha512-+f15FfK64YQwZdJNELETdn5ibXEUQmW1DZL6KXhNnc2heoy/sg9VJJeT7n8TlMWouzWqSWavFkIhHyIbIAEapg==",
@@ -1111,7 +978,7 @@
1111
978
  "eslint": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 || ^9.0.0"
1112
979
  }
1113
980
  },
1114
- "node_modules/@lark-apaas/coding-presets/node_modules/globals": {
981
+ "node_modules/@lark-apaas/coding-presets-react/node_modules/globals": {
1115
982
  "version": "16.5.0",
1116
983
  "resolved": "https://registry.npmmirror.com/globals/-/globals-16.5.0.tgz",
1117
984
  "integrity": "sha512-c/c15i26VrJ4IRt5Z89DnIzCGDn9EcebibhAOjw5ibqEHsE1wLUgkPn9RDmNcUKyU87GeaL633nyJ+pplFR2ZQ==",
@@ -5380,13 +5247,6 @@
5380
5247
  "url": "https://github.com/open-cli-tools/concurrently?sponsor=1"
5381
5248
  }
5382
5249
  },
5383
- "node_modules/convert-source-map": {
5384
- "version": "2.0.0",
5385
- "resolved": "https://registry.npmmirror.com/convert-source-map/-/convert-source-map-2.0.0.tgz",
5386
- "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==",
5387
- "dev": true,
5388
- "license": "MIT"
5389
- },
5390
5250
  "node_modules/cookie": {
5391
5251
  "version": "1.1.1",
5392
5252
  "resolved": "https://registry.npmmirror.com/cookie/-/cookie-1.1.1.tgz",
@@ -6384,36 +6244,6 @@
6384
6244
  "ms": "^2.1.1"
6385
6245
  }
6386
6246
  },
6387
- "node_modules/eslint-plugin-react-hooks": {
6388
- "version": "7.1.1",
6389
- "resolved": "https://registry.npmmirror.com/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-7.1.1.tgz",
6390
- "integrity": "sha512-f2I7Gw6JbvCexzIInuSbZpfdQ44D7iqdWX01FKLvrPgqxoE7oMj8clOfto8U6vYiz4yd5oKu39rRSVOe1zRu0g==",
6391
- "dev": true,
6392
- "license": "MIT",
6393
- "dependencies": {
6394
- "@babel/core": "^7.24.4",
6395
- "@babel/parser": "^7.24.4",
6396
- "hermes-parser": "^0.25.1",
6397
- "zod": "^3.25.0 || ^4.0.0",
6398
- "zod-validation-error": "^3.5.0 || ^4.0.0"
6399
- },
6400
- "engines": {
6401
- "node": ">=18"
6402
- },
6403
- "peerDependencies": {
6404
- "eslint": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 || ^9.0.0 || ^10.0.0"
6405
- }
6406
- },
6407
- "node_modules/eslint-plugin-react-refresh": {
6408
- "version": "0.5.2",
6409
- "resolved": "https://registry.npmmirror.com/eslint-plugin-react-refresh/-/eslint-plugin-react-refresh-0.5.2.tgz",
6410
- "integrity": "sha512-hmgTH57GfzoTFjVN0yBwTggnsVUF2tcqi7RJZHqi9lIezSs4eFyAMktA68YD4r5kNw1mxyY4dmkyoFDb3FIqrA==",
6411
- "dev": true,
6412
- "license": "MIT",
6413
- "peerDependencies": {
6414
- "eslint": "^9 || ^10"
6415
- }
6416
- },
6417
6247
  "node_modules/eslint-scope": {
6418
6248
  "version": "8.4.0",
6419
6249
  "resolved": "https://registry.npmmirror.com/eslint-scope/-/eslint-scope-8.4.0.tgz",
@@ -6921,16 +6751,6 @@
6921
6751
  "node": ">= 0.4"
6922
6752
  }
6923
6753
  },
6924
- "node_modules/gensync": {
6925
- "version": "1.0.0-beta.2",
6926
- "resolved": "https://registry.npmmirror.com/gensync/-/gensync-1.0.0-beta.2.tgz",
6927
- "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==",
6928
- "dev": true,
6929
- "license": "MIT",
6930
- "engines": {
6931
- "node": ">=6.9.0"
6932
- }
6933
- },
6934
6754
  "node_modules/get-caller-file": {
6935
6755
  "version": "2.0.5",
6936
6756
  "resolved": "https://registry.npmmirror.com/get-caller-file/-/get-caller-file-2.0.5.tgz",
@@ -7097,19 +6917,6 @@
7097
6917
  "which": "bin/which"
7098
6918
  }
7099
6919
  },
7100
- "node_modules/globals": {
7101
- "version": "17.6.0",
7102
- "resolved": "https://registry.npmmirror.com/globals/-/globals-17.6.0.tgz",
7103
- "integrity": "sha512-sepffkT8stwnIYbsMBpoCHJuJM5l98FUF2AnE07hfvE0m/qp3R586hw4jF4uadbhvg1ooIdzuu7CsfD2jzCaNA==",
7104
- "dev": true,
7105
- "license": "MIT",
7106
- "engines": {
7107
- "node": ">=18"
7108
- },
7109
- "funding": {
7110
- "url": "https://github.com/sponsors/sindresorhus"
7111
- }
7112
- },
7113
6920
  "node_modules/globalthis": {
7114
6921
  "version": "1.0.4",
7115
6922
  "resolved": "https://registry.npmmirror.com/globalthis/-/globalthis-1.0.4.tgz",
@@ -7336,23 +7143,6 @@
7336
7143
  "url": "https://opencollective.com/unified"
7337
7144
  }
7338
7145
  },
7339
- "node_modules/hermes-estree": {
7340
- "version": "0.25.1",
7341
- "resolved": "https://registry.npmmirror.com/hermes-estree/-/hermes-estree-0.25.1.tgz",
7342
- "integrity": "sha512-0wUoCcLp+5Ev5pDW2OriHC2MJCbwLwuRx+gAqMTOkGKJJiBCLjtrvy4PWUGn6MIVefecRpzoOZ/UV6iGdOr+Cw==",
7343
- "dev": true,
7344
- "license": "MIT"
7345
- },
7346
- "node_modules/hermes-parser": {
7347
- "version": "0.25.1",
7348
- "resolved": "https://registry.npmmirror.com/hermes-parser/-/hermes-parser-0.25.1.tgz",
7349
- "integrity": "sha512-6pEjquH3rqaI6cYAXYPcz9MS4rY6R4ngRgrgfDshRptUZIc3lw0MCIJIGDj9++mfySOuPTHB4nrSW99BCvOPIA==",
7350
- "dev": true,
7351
- "license": "MIT",
7352
- "dependencies": {
7353
- "hermes-estree": "0.25.1"
7354
- }
7355
- },
7356
7146
  "node_modules/hookified": {
7357
7147
  "version": "1.15.1",
7358
7148
  "resolved": "https://registry.npmmirror.com/hookified/-/hookified-1.15.1.tgz",
@@ -8164,19 +7954,6 @@
8164
7954
  "devOptional": true,
8165
7955
  "license": "MIT"
8166
7956
  },
8167
- "node_modules/json5": {
8168
- "version": "2.2.3",
8169
- "resolved": "https://registry.npmmirror.com/json5/-/json5-2.2.3.tgz",
8170
- "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==",
8171
- "dev": true,
8172
- "license": "MIT",
8173
- "bin": {
8174
- "json5": "lib/cli.js"
8175
- },
8176
- "engines": {
8177
- "node": ">=6"
8178
- }
8179
- },
8180
7957
  "node_modules/jsonfile": {
8181
7958
  "version": "6.2.1",
8182
7959
  "resolved": "https://registry.npmmirror.com/jsonfile/-/jsonfile-6.2.1.tgz",
@@ -8576,16 +8353,6 @@
8576
8353
  "tslib": "^2.0.3"
8577
8354
  }
8578
8355
  },
8579
- "node_modules/lru-cache": {
8580
- "version": "5.1.1",
8581
- "resolved": "https://registry.npmmirror.com/lru-cache/-/lru-cache-5.1.1.tgz",
8582
- "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==",
8583
- "dev": true,
8584
- "license": "ISC",
8585
- "dependencies": {
8586
- "yallist": "^3.0.2"
8587
- }
8588
- },
8589
8356
  "node_modules/lucide-react": {
8590
8357
  "version": "0.577.0",
8591
8358
  "resolved": "https://registry.npmmirror.com/lucide-react/-/lucide-react-0.577.0.tgz",
@@ -12981,13 +12748,6 @@
12981
12748
  "node": ">=10"
12982
12749
  }
12983
12750
  },
12984
- "node_modules/yallist": {
12985
- "version": "3.1.1",
12986
- "resolved": "https://registry.npmmirror.com/yallist/-/yallist-3.1.1.tgz",
12987
- "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==",
12988
- "dev": true,
12989
- "license": "ISC"
12990
- },
12991
12751
  "node_modules/yaml": {
12992
12752
  "version": "2.9.0",
12993
12753
  "resolved": "https://registry.npmmirror.com/yaml/-/yaml-2.9.0.tgz",
@@ -13071,19 +12831,6 @@
13071
12831
  "url": "https://github.com/sponsors/colinhacks"
13072
12832
  }
13073
12833
  },
13074
- "node_modules/zod-validation-error": {
13075
- "version": "4.0.2",
13076
- "resolved": "https://registry.npmmirror.com/zod-validation-error/-/zod-validation-error-4.0.2.tgz",
13077
- "integrity": "sha512-Q6/nZLe6jxuU80qb/4uJ4t5v2VEZ44lzQjPDhYJNztRQ4wyWc6VF3D3Kb/fAuPetZQnhS3hnajCf9CsWesghLQ==",
13078
- "dev": true,
13079
- "license": "MIT",
13080
- "engines": {
13081
- "node": ">=18.0.0"
13082
- },
13083
- "peerDependencies": {
13084
- "zod": "^3.25.0 || ^4.0.0"
13085
- }
13086
- },
13087
12834
  "node_modules/zone.js": {
13088
12835
  "version": "0.16.2",
13089
12836
  "resolved": "https://registry.npmmirror.com/zone.js/-/zone.js-0.16.2.tgz",
@@ -40,7 +40,7 @@
40
40
  "@radix-ui/react-toggle": "^1.1.9",
41
41
  "@radix-ui/react-toggle-group": "^1.1.10",
42
42
  "@radix-ui/react-tooltip": "^1.1.18",
43
- "@lark-apaas/client-toolkit-lite": "1.1.7-alpha.27",
43
+ "@lark-apaas/client-toolkit-lite": "1.1.9",
44
44
  "@formkit/auto-animate": "^0.9.0",
45
45
  "@gsap/react": "^2.1.2",
46
46
  "framer-motion": "^12.38.0",
@@ -74,19 +74,14 @@
74
74
  "zod": "^4.3.6"
75
75
  },
76
76
  "devDependencies": {
77
- "@eslint/js": "^9",
78
77
  "@types/node": "^24",
79
78
  "@types/react": "^19",
80
79
  "@types/react-dom": "^19",
81
- "@lark-apaas/coding-presets": "1.0.3-alpha.0",
82
- "@lark-apaas/coding-preset-vite-react": "^1.0.2",
80
+ "@lark-apaas/coding-presets-react": "^0.1.0",
81
+ "@lark-apaas/coding-preset-vite-react": "^1.0.4",
83
82
  "concurrently": "^9",
84
83
  "eslint": "^9",
85
- "eslint-plugin-react-hooks": "^7",
86
- "eslint-plugin-react-refresh": "^0.5",
87
- "globals": "^17",
88
84
  "typescript": "~5.9",
89
- "typescript-eslint": "^8",
90
85
  "vite": "^8"
91
86
  }
92
87
  }
@@ -1,5 +1,5 @@
1
1
  {
2
- "extends": "@lark-apaas/coding-presets/lib/tsconfig/tsconfig.app.json",
2
+ "extends": "@lark-apaas/coding-presets-react/lib/tsconfig/tsconfig.app.json",
3
3
  "compilerOptions": {
4
4
  "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
5
5
  "baseUrl": ".",