create-packer 1.41.4 → 1.41.6

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,6 +1,6 @@
1
1
  {
2
2
  "name": "create-packer",
3
- "version": "1.41.4",
3
+ "version": "1.41.6",
4
4
  "main": "index.js",
5
5
  "repository": "https://github.com/kevily/create-packer",
6
6
  "author": "1k <bug_zero@163.com>",
@@ -1,17 +1,10 @@
1
- import { FunctionComponent } from 'react'
2
- import { ThemeProvider } from 'styled-components'
3
- import { QueryClient, QueryClientProvider } from '@tanstack/react-query'
4
- import { theme } from '@/shared/theme'
5
-
6
- const queryClient = new QueryClient()
7
-
8
- export interface propsType {
9
- children: React.ReactNode
10
- }
11
- export const Root: FunctionComponent<propsType> = props => {
12
- return (
13
- <QueryClientProvider client={queryClient}>
14
- <ThemeProvider theme={theme}>{props.children}</ThemeProvider>
15
- </QueryClientProvider>
16
- )
17
- }
1
+ import { FunctionComponent, ReactNode } from 'react'
2
+ import { ThemeProvider } from 'styled-components'
3
+ import { theme } from '@/shared/theme'
4
+
5
+ export interface propsType {
6
+ children: ReactNode
7
+ }
8
+ export const Root: FunctionComponent<propsType> = props => {
9
+ return <ThemeProvider theme={theme}>{props.children}</ThemeProvider>
10
+ }
@@ -19,10 +19,9 @@
19
19
  "commit": "git add . && npm run cz"
20
20
  },
21
21
  "dependencies": {
22
- "@tanstack/react-query": "5.51.15",
23
22
  "axios": "1.7.9",
24
23
  "cross-env": "7.0.3",
25
- "define-zustand": "3.1.1",
24
+ "define-zustand": "3.2.0",
26
25
  "immer": "10.0.1",
27
26
  "lodash-es": "4.17.21",
28
27
  "qs": "6.11.2",
@@ -32,7 +31,7 @@
32
31
  "react-use": "17.5.0",
33
32
  "styled-components": "6.1.11",
34
33
  "type-fest": "4.33.0",
35
- "zustand": "4.4.1"
34
+ "zustand": "5.0.3"
36
35
  },
37
36
  "devDependencies": {
38
37
  "@commitlint/cli": "17.6.1",
@@ -1,10 +1,11 @@
1
- import { useHomeQuery } from '@/shared/service'
1
+ import { useAsync } from 'react-use'
2
+ import { fetchHomeData } from '@/shared/service'
2
3
  import { StyledRoot } from './view.styled'
3
4
 
4
5
  export default function Home() {
5
- const query = useHomeQuery()
6
+ const homeData = useAsync(fetchHomeData)
6
7
 
7
- console.log('data', query.data)
8
+ console.log('data', homeData.value)
8
9
 
9
10
  return <StyledRoot>sdfs</StyledRoot>
10
11
  }
@@ -1,8 +1,7 @@
1
- import { useQuery } from '@tanstack/react-query'
2
-
3
- export function useHomeQuery() {
4
- return useQuery({
5
- queryKey: ['home_data'],
6
- queryFn: () => [{ name: '1' }]
7
- })
8
- }
1
+ import { request } from './request'
2
+ import { HOME_DATA } from './api'
3
+
4
+ export async function fetchHomeData() {
5
+ const { data } = await request(HOME_DATA)
6
+ return data
7
+ }
@@ -1,17 +1,10 @@
1
- import { FunctionComponent } from 'react'
1
+ import { FunctionComponent, ReactNode } from 'react'
2
2
  import { ThemeProvider } from 'styled-components'
3
- import { QueryClient, QueryClientProvider } from '@tanstack/react-query'
4
3
  import { theme } from '@/shared/theme'
5
4
 
6
- const queryClient = new QueryClient()
7
-
8
5
  export interface propsType {
9
- children: React.ReactNode
6
+ children: ReactNode
10
7
  }
11
8
  export const Root: FunctionComponent<propsType> = props => {
12
- return (
13
- <QueryClientProvider client={queryClient}>
14
- <ThemeProvider theme={theme}>{props.children}</ThemeProvider>
15
- </QueryClientProvider>
16
- )
9
+ return <ThemeProvider theme={theme}>{props.children}</ThemeProvider>
17
10
  }
@@ -1,80 +1,79 @@
1
- {
2
- "name": "react-vite",
3
- "private": true,
4
- "version": "0.0.0",
5
- "type": "module",
6
- "scripts": {
7
- "prepare": "husky install",
8
- "dev": "vite",
9
- "build": "tsc --noEmit && vite build",
10
- "build:analyse": "tsc --noEmit && vite build --mode analyse",
11
- "preview": "vite preview",
12
- "up:vite": "pnpm up vite @vitejs/* vite-plugin-* -L",
13
- "format": "prettier --write \"**/*.{ts,js,tsx,jsx,json,css,scss,less}\"",
14
- "lint": "tsc --noEmit && eslint --no-error-on-unmatched-pattern && stylelint **/*.{css,scss,less,ts,tsx}",
15
- "lint:fix": "eslint --fix && stylelint **/*.{css,scss,less,ts,tsx} --fix",
16
- "cz": "cz",
17
- "push": "npm run commit && git push",
18
- "commit": "git add . && npm run cz"
19
- },
20
- "dependencies": {
21
- "@tanstack/react-query": "5.51.15",
22
- "axios": "1.7.9",
23
- "define-zustand": "3.1.1",
24
- "immer": "10.0.1",
25
- "lodash-es": "4.17.21",
26
- "qs": "6.11.2",
27
- "react": "18.3.1",
28
- "react-dom": "18.3.1",
29
- "react-router-dom": "6.14.0",
30
- "react-use": "17.5.0",
31
- "styled-components": "6.1.11",
32
- "type-fest": "4.33.0",
33
- "zustand": "4.4.1"
34
- },
35
- "devDependencies": {
36
- "@commitlint/cli": "17.6.1",
37
- "@commitlint/config-conventional": "17.6.1",
38
- "@commitlint/cz-commitlint": "17.5.0",
39
- "@eslint/js": "9.15.0",
40
- "@faker-js/faker": "8.4.1",
41
- "@types/lodash-es": "4.17.12",
42
- "@types/node": "18.16.0",
43
- "@types/qs": "6.9.7",
44
- "@types/react": "18.3.3",
45
- "@types/react-dom": "18.3.0",
46
- "@vitejs/plugin-react": "4.3.4",
47
- "autoprefixer": "10.4.14",
48
- "babel-plugin-styled-components": "2.1.4",
49
- "commitizen": "4.3.0",
50
- "cssnano": "6.0.0",
51
- "eslint": "9.17.0",
52
- "eslint-import-resolver-typescript": "3.7.0",
53
- "eslint-plugin-import": "2.31.0",
54
- "eslint-plugin-react": "7.37.2",
55
- "eslint-plugin-react-hooks": "5.1.0",
56
- "globals": "15.12.0",
57
- "husky": "9.1.6",
58
- "inquirer": "^8.1.2",
59
- "postcss": "8.4.35",
60
- "postcss-import": "16.0.1",
61
- "postcss-nesting": "12.0.3",
62
- "postcss-styled-syntax": "0.6.4",
63
- "prettier": "3.2.5",
64
- "rollup-plugin-visualizer": "5.12.0",
65
- "stylelint": "16.10.0",
66
- "stylelint-config-standard": "36.0.1",
67
- "typescript": "5.7.2",
68
- "typescript-eslint": "8.15.0",
69
- "vite": "6.0.7",
70
- "vite-plugin-checker": "0.8.0",
71
- "vite-plugin-mock-dev-server": "1.8.3",
72
- "vite-plugin-stylelint": "6.0.0",
73
- "vite-plugin-svgr": "4.3.0"
74
- },
75
- "config": {
76
- "commitizen": {
77
- "path": "@commitlint/cz-commitlint"
78
- }
79
- }
80
- }
1
+ {
2
+ "name": "react-vite",
3
+ "private": true,
4
+ "version": "0.0.0",
5
+ "type": "module",
6
+ "scripts": {
7
+ "prepare": "husky install",
8
+ "dev": "vite",
9
+ "build": "tsc --noEmit && vite build",
10
+ "build:analyse": "tsc --noEmit && vite build --mode analyse",
11
+ "preview": "vite preview",
12
+ "up:vite": "pnpm up vite @vitejs/* vite-plugin-* -L",
13
+ "format": "prettier --write \"**/*.{ts,js,tsx,jsx,json,css,scss,less}\"",
14
+ "lint": "tsc --noEmit && eslint --no-error-on-unmatched-pattern && stylelint **/*.{css,scss,less,ts,tsx}",
15
+ "lint:fix": "eslint --fix && stylelint **/*.{css,scss,less,ts,tsx} --fix",
16
+ "cz": "cz",
17
+ "push": "npm run commit && git push",
18
+ "commit": "git add . && npm run cz"
19
+ },
20
+ "dependencies": {
21
+ "axios": "1.7.9",
22
+ "define-zustand": "3.2.0",
23
+ "immer": "10.0.1",
24
+ "lodash-es": "4.17.21",
25
+ "qs": "6.11.2",
26
+ "react": "18.3.1",
27
+ "react-dom": "18.3.1",
28
+ "react-router-dom": "6.14.0",
29
+ "react-use": "17.5.0",
30
+ "styled-components": "6.1.11",
31
+ "type-fest": "4.33.0",
32
+ "zustand": "5.0.3"
33
+ },
34
+ "devDependencies": {
35
+ "@commitlint/cli": "17.6.1",
36
+ "@commitlint/config-conventional": "17.6.1",
37
+ "@commitlint/cz-commitlint": "17.5.0",
38
+ "@eslint/js": "9.15.0",
39
+ "@faker-js/faker": "8.4.1",
40
+ "@types/lodash-es": "4.17.12",
41
+ "@types/node": "18.16.0",
42
+ "@types/qs": "6.9.7",
43
+ "@types/react": "18.3.3",
44
+ "@types/react-dom": "18.3.0",
45
+ "@vitejs/plugin-react": "4.3.4",
46
+ "autoprefixer": "10.4.14",
47
+ "babel-plugin-styled-components": "2.1.4",
48
+ "commitizen": "4.3.0",
49
+ "cssnano": "6.0.0",
50
+ "eslint": "9.17.0",
51
+ "eslint-import-resolver-typescript": "3.7.0",
52
+ "eslint-plugin-import": "2.31.0",
53
+ "eslint-plugin-react": "7.37.2",
54
+ "eslint-plugin-react-hooks": "5.1.0",
55
+ "globals": "15.12.0",
56
+ "husky": "9.1.6",
57
+ "inquirer": "^8.1.2",
58
+ "postcss": "8.4.35",
59
+ "postcss-import": "16.0.1",
60
+ "postcss-nesting": "12.0.3",
61
+ "postcss-styled-syntax": "0.6.4",
62
+ "prettier": "3.2.5",
63
+ "rollup-plugin-visualizer": "5.12.0",
64
+ "stylelint": "16.10.0",
65
+ "stylelint-config-standard": "36.0.1",
66
+ "typescript": "5.7.2",
67
+ "typescript-eslint": "8.15.0",
68
+ "vite": "6.0.7",
69
+ "vite-plugin-checker": "0.8.0",
70
+ "vite-plugin-mock-dev-server": "1.8.3",
71
+ "vite-plugin-stylelint": "6.0.0",
72
+ "vite-plugin-svgr": "4.3.0"
73
+ },
74
+ "config": {
75
+ "commitizen": {
76
+ "path": "@commitlint/cz-commitlint"
77
+ }
78
+ }
79
+ }
@@ -1,10 +1,11 @@
1
- import { useHomeQuery } from '@/shared/service'
2
- import { StyledRoot } from './view.styled'
3
-
4
- export default function Home() {
5
- const query = useHomeQuery()
6
-
7
- console.log('data', query.data)
8
-
9
- return <StyledRoot>sdfs</StyledRoot>
10
- }
1
+ import { useAsync } from 'react-use'
2
+ import { fetchHomeData } from '@/shared/service'
3
+ import { StyledRoot } from './view.styled'
4
+
5
+ export default function Home() {
6
+ const homeData = useAsync(fetchHomeData)
7
+
8
+ console.log('data', homeData.value)
9
+
10
+ return <StyledRoot>sdfs</StyledRoot>
11
+ }
@@ -1,10 +1,7 @@
1
- import { useQuery } from '@tanstack/react-query'
2
- import { request } from './request'
3
- import { HOME_DATA } from './api'
4
-
5
- export function useHomeQuery() {
6
- return useQuery({
7
- queryKey: ['home_data'],
8
- queryFn: () => request.post(HOME_DATA)
9
- })
10
- }
1
+ import { request } from './request'
2
+ import { HOME_DATA } from './api'
3
+
4
+ export async function fetchHomeData() {
5
+ const { data } = await request(HOME_DATA)
6
+ return data
7
+ }
@@ -4,4 +4,4 @@ import { router } from '@/router'
4
4
  import { app } from '@/domain/app'
5
5
  import './style.css'
6
6
 
7
- app.use(VueQueryPlugin).use(createPinia()).use(router).mount('#app')
7
+ app.use(createPinia()).use(router).mount('#app')
@@ -18,7 +18,6 @@
18
18
  "up:vite": "pnpm up vite @vitejs/* vite-plugin-* -L"
19
19
  },
20
20
  "dependencies": {
21
- "@tanstack/vue-query": "5.51.15",
22
21
  "axios": "1.7.9",
23
22
  "lodash-es": "4.17.21",
24
23
  "pinia": "2.3.1",
@@ -1,16 +1,12 @@
1
- <script setup lang="ts">
2
- import { watch } from 'vue'
3
- import { useHomeQuery } from '@/shared/service'
4
-
5
- const { data } = useHomeQuery()
6
-
7
- watch(data, data => {
8
- console.log('data', data?.data)
9
- })
10
- </script>
11
-
12
- <template>
13
- <div>Home</div>
14
- </template>
15
-
16
- <style scoped></style>
1
+ <script setup lang="ts">
2
+ import { fetchHomeData } from '@/shared/service'
3
+
4
+ const data = fetchHomeData()
5
+ console.log('data', data)
6
+ </script>
7
+
8
+ <template>
9
+ <div>Home</div>
10
+ </template>
11
+
12
+ <style scoped></style>
@@ -1,10 +1,7 @@
1
- import { useQuery } from '@tanstack/vue-query'
2
1
  import { request } from './request'
3
2
  import { HOME_DATA } from './api'
4
3
 
5
- export function useHomeQuery() {
6
- return useQuery({
7
- queryKey: ['home_data'],
8
- queryFn: () => request.post(HOME_DATA)
9
- })
4
+ export async function fetchHomeData() {
5
+ const { data } = await request(HOME_DATA)
6
+ return data
10
7
  }
@@ -1,7 +1,6 @@
1
1
  import { createPinia } from 'pinia'
2
- import { VueQueryPlugin } from '@tanstack/vue-query'
3
2
  import { router } from '@/router'
4
3
  import { app } from '@/domain/app'
5
4
  import './style.css'
6
5
 
7
- app.use(VueQueryPlugin).use(createPinia()).use(router).mount('#app')
6
+ app.use(createPinia()).use(router).mount('#app')
@@ -20,7 +20,6 @@
20
20
  "up:vite": "pnpm up vite @vitejs/* vite-plugin-* -L"
21
21
  },
22
22
  "dependencies": {
23
- "@tanstack/vue-query": "5.51.15",
24
23
  "axios": "1.7.9",
25
24
  "lodash-es": "4.17.21",
26
25
  "pinia": "2.3.1",
@@ -0,0 +1,19 @@
1
+ import { faker } from '@faker-js/faker'
2
+ import { defineMock } from '@/mockUtils'
3
+ import { API } from '@/shared/service'
4
+
5
+ export default defineMock([
6
+ {
7
+ url: API.HOME_DATA,
8
+ body: faker.helpers.multiple(
9
+ () => ({
10
+ id: faker.string.uuid(),
11
+ name: faker.person.fullName(),
12
+ age: faker.number.int({ max: 110 })
13
+ }),
14
+ {
15
+ count: 10
16
+ }
17
+ )
18
+ }
19
+ ])
@@ -1,16 +1,12 @@
1
- <script setup lang="ts">
2
- import { watch } from 'vue'
3
- import { useHomeQuery } from '@/shared/service'
4
-
5
- const { data } = useHomeQuery()
6
-
7
- watch(data, data => {
8
- console.log('data', data?.data)
9
- })
10
- </script>
11
-
12
- <template>
13
- <div>Home</div>
14
- </template>
15
-
16
- <style scoped></style>
1
+ <script setup lang="ts">
2
+ import { fetchHomeData } from '@/shared/service'
3
+
4
+ const data = fetchHomeData()
5
+ console.log('data', data)
6
+ </script>
7
+
8
+ <template>
9
+ <div>Home</div>
10
+ </template>
11
+
12
+ <style scoped></style>
@@ -1,5 +1,5 @@
1
1
  import { ref, reactive, computed, unref } from 'vue'
2
- import { cloneDeep, concat, assign, pick, isNil, size, max } from 'lodash-es'
2
+ import { cloneDeep, concat, assign, pick, isNil, size, map, max } from 'lodash-es'
3
3
 
4
4
  export interface stateType<ListItem, P> {
5
5
  loading: boolean
@@ -73,9 +73,9 @@ export default function createListStore<
73
73
  assign(params, arg?.params)
74
74
  const result = await config.fetch({
75
75
  pagination: unref(pagination),
76
- selected: unref(selected) as ListItem[],
76
+ selected: unref(selected),
77
77
  total: unref(total),
78
- params: params as P
78
+ params
79
79
  })
80
80
  list.value =
81
81
  !isNil(result.page) && arg?.isConcat ? concat(list.value, result.list) : result.list
@@ -1,10 +1,7 @@
1
- import { useQuery } from '@tanstack/vue-query'
2
1
  import { request } from './request'
3
2
  import { HOME_DATA } from './api'
4
3
 
5
- export function useHomeQuery() {
6
- return useQuery({
7
- queryKey: ['home_data'],
8
- queryFn: () => request.post(HOME_DATA)
9
- })
4
+ export async function fetchHomeData() {
5
+ const { data } = await request(HOME_DATA)
6
+ return data
10
7
  }
@@ -1,85 +1,85 @@
1
- {
2
- "name": "web-extension",
3
- "private": true,
4
- "version": "0.0.0",
5
- "type": "module",
6
- "scripts": {
7
- "prepare": "husky install",
8
- "dev": "wxt",
9
- "dev:firefox": "wxt -b firefox",
10
- "build": "wxt build",
11
- "build_dev": "wxt build --mode dev",
12
- "build:firefox": "wxt build -b firefox",
13
- "build_dev:firefox": "wxt build -b firefox --mode dev",
14
- "zip": "wxt zip",
15
- "zip_dev": "wxt zip --mode dev",
16
- "zip:firefox": "wxt zip -b firefox",
17
- "zip_dev:firefox": "wxt zip -b firefox --mode dev",
18
- "postinstall": "wxt prepare",
19
- "up:vite": "pnpm up vite @vitejs/* -L",
20
- "format": "prettier --write \"**/*.{ts,js,tsx,jsx,json,css,scss,less}\"",
21
- "lint": "tsc --noEmit && eslint && stylelint **/*.{css,scss,less}",
22
- "lint:fix": "eslint --fix && stylelint **/*.{css,scss,less} --fix",
23
- "cz": "cz",
24
- "push": "npm run commit && git push",
25
- "commit": "git add . && npm run cz"
26
- },
27
- "dependencies": {
28
- "@tanstack/react-query": "5.51.15",
29
- "axios": "1.7.9",
30
- "define-zustand": "3.1.1",
31
- "immer": "10.0.1",
32
- "lodash-es": "4.17.21",
33
- "qs": "6.11.2",
34
- "react": "18.3.1",
35
- "react-dom": "18.3.1",
36
- "styled-components": "6.1.11",
37
- "type-fest": "4.33.0",
38
- "zustand": "4.4.1"
39
- },
40
- "devDependencies": {
41
- "@commitlint/cli": "17.6.1",
42
- "@commitlint/config-conventional": "17.6.1",
43
- "@commitlint/cz-commitlint": "17.5.0",
44
- "@eslint/js": "9.15.0",
45
- "@types/chrome": "0.0.254",
46
- "@types/lodash-es": "4.17.12",
47
- "@types/node": "18.16.0",
48
- "@types/qs": "6.9.7",
49
- "@types/react": "18.3.3",
50
- "@types/react-dom": "18.3.0",
51
- "@vitejs/plugin-react": "4.3.4",
52
- "autoprefixer": "10.4.14",
53
- "babel-plugin-styled-components": "2.1.4",
54
- "commitizen": "4.3.0",
55
- "cssnano": "6.0.0",
56
- "eslint": "9.17.0",
57
- "eslint-import-resolver-typescript": "3.7.0",
58
- "eslint-plugin-import": "2.31.0",
59
- "eslint-plugin-react": "7.37.2",
60
- "eslint-plugin-react-hooks": "5.1.0",
61
- "globals": "15.12.0",
62
- "husky": "9.1.6",
63
- "inquirer": "^8.1.2",
64
- "postcss": "8.4.31",
65
- "postcss-import": "15.1.0",
66
- "postcss-nesting": "11.2.2",
67
- "postcss-scss": "4.0.9",
68
- "postcss-styled-syntax": "0.6.4",
69
- "prettier": "3.2.5",
70
- "rimraf": "5.0.1",
71
- "sass": "1.63.4",
72
- "stylelint": "16.10.0",
73
- "stylelint-config-standard": "36.0.1",
74
- "typescript": "5.7.2",
75
- "typescript-eslint": "8.15.0",
76
- "vite": "6.0.7",
77
- "vite-plugin-svgr": "4.3.0",
78
- "wxt": "0.19.25"
79
- },
80
- "config": {
81
- "commitizen": {
82
- "path": "@commitlint/cz-commitlint"
83
- }
84
- }
85
- }
1
+ {
2
+ "name": "web-extension",
3
+ "private": true,
4
+ "version": "0.0.0",
5
+ "type": "module",
6
+ "scripts": {
7
+ "prepare": "husky install",
8
+ "dev": "wxt",
9
+ "dev:firefox": "wxt -b firefox",
10
+ "build": "wxt build",
11
+ "build_dev": "wxt build --mode dev",
12
+ "build:firefox": "wxt build -b firefox",
13
+ "build_dev:firefox": "wxt build -b firefox --mode dev",
14
+ "zip": "wxt zip",
15
+ "zip_dev": "wxt zip --mode dev",
16
+ "zip:firefox": "wxt zip -b firefox",
17
+ "zip_dev:firefox": "wxt zip -b firefox --mode dev",
18
+ "postinstall": "wxt prepare",
19
+ "up:vite": "pnpm up vite @vitejs/* -L",
20
+ "format": "prettier --write \"**/*.{ts,js,tsx,jsx,json,css,scss,less}\"",
21
+ "lint": "tsc --noEmit && eslint && stylelint **/*.{css,scss,less}",
22
+ "lint:fix": "eslint --fix && stylelint **/*.{css,scss,less} --fix",
23
+ "cz": "cz",
24
+ "push": "npm run commit && git push",
25
+ "commit": "git add . && npm run cz"
26
+ },
27
+ "dependencies": {
28
+ "@tanstack/react-query": "5.51.15",
29
+ "axios": "1.7.9",
30
+ "define-zustand": "3.2.0",
31
+ "immer": "10.0.1",
32
+ "lodash-es": "4.17.21",
33
+ "qs": "6.11.2",
34
+ "react": "18.3.1",
35
+ "react-dom": "18.3.1",
36
+ "styled-components": "6.1.11",
37
+ "type-fest": "4.33.0",
38
+ "zustand": "5.0.3"
39
+ },
40
+ "devDependencies": {
41
+ "@commitlint/cli": "17.6.1",
42
+ "@commitlint/config-conventional": "17.6.1",
43
+ "@commitlint/cz-commitlint": "17.5.0",
44
+ "@eslint/js": "9.15.0",
45
+ "@types/chrome": "0.0.254",
46
+ "@types/lodash-es": "4.17.12",
47
+ "@types/node": "18.16.0",
48
+ "@types/qs": "6.9.7",
49
+ "@types/react": "18.3.3",
50
+ "@types/react-dom": "18.3.0",
51
+ "@vitejs/plugin-react": "4.3.4",
52
+ "autoprefixer": "10.4.14",
53
+ "babel-plugin-styled-components": "2.1.4",
54
+ "commitizen": "4.3.0",
55
+ "cssnano": "6.0.0",
56
+ "eslint": "9.17.0",
57
+ "eslint-import-resolver-typescript": "3.7.0",
58
+ "eslint-plugin-import": "2.31.0",
59
+ "eslint-plugin-react": "7.37.2",
60
+ "eslint-plugin-react-hooks": "5.1.0",
61
+ "globals": "15.12.0",
62
+ "husky": "9.1.6",
63
+ "inquirer": "^8.1.2",
64
+ "postcss": "8.4.31",
65
+ "postcss-import": "15.1.0",
66
+ "postcss-nesting": "11.2.2",
67
+ "postcss-scss": "4.0.9",
68
+ "postcss-styled-syntax": "0.6.4",
69
+ "prettier": "3.2.5",
70
+ "rimraf": "5.0.1",
71
+ "sass": "1.63.4",
72
+ "stylelint": "16.10.0",
73
+ "stylelint-config-standard": "36.0.1",
74
+ "typescript": "5.7.2",
75
+ "typescript-eslint": "8.15.0",
76
+ "vite": "6.0.7",
77
+ "vite-plugin-svgr": "4.3.0",
78
+ "wxt": "0.19.25"
79
+ },
80
+ "config": {
81
+ "commitizen": {
82
+ "path": "@commitlint/cz-commitlint"
83
+ }
84
+ }
85
+ }