create-packer 1.41.5 → 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.5",
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>",
@@ -21,7 +21,7 @@
21
21
  "dependencies": {
22
22
  "axios": "1.7.9",
23
23
  "cross-env": "7.0.3",
24
- "define-zustand": "3.1.1",
24
+ "define-zustand": "3.2.0",
25
25
  "immer": "10.0.1",
26
26
  "lodash-es": "4.17.21",
27
27
  "qs": "6.11.2",
@@ -31,7 +31,7 @@
31
31
  "react-use": "17.5.0",
32
32
  "styled-components": "6.1.11",
33
33
  "type-fest": "4.33.0",
34
- "zustand": "4.4.1"
34
+ "zustand": "5.0.3"
35
35
  },
36
36
  "devDependencies": {
37
37
  "@commitlint/cli": "17.6.1",
@@ -1,11 +1,11 @@
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
+ 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,79 +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
- "axios": "1.7.9",
22
- "define-zustand": "3.1.1",
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": "4.4.1"
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
+ {
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,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
+ }