create-packer 1.45.14 → 1.45.16
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 +1 -1
- package/template/docusaurus/package.json +52 -52
- package/template/lib/workspace/package.json +77 -77
- package/template/lib/workspace/packages/ts/package.json +30 -30
- package/template/web-app/react-rsbuild/domain/app/components/app.tsx +1 -0
- package/template/web-app/react-rsbuild/env.d.ts +27 -27
- package/template/web-app/react-rsbuild/package.json +79 -79
- package/template/web-app/react-vite/domain/app/components/app.tsx +1 -0
- package/template/web-app/react-vite/package.json +78 -78
- package/template/web-app/react-vite/shared/types/utils.ts +2 -2
- package/template/web-app/vue/package.json +71 -71
- package/template/web-app/vue-rsbuild/package.json +73 -73
- package/template/web-extension/package.json +86 -86
- package/template/web-app/svelte/.env +0 -2
- package/template/web-app/svelte/.env.development +0 -2
- package/template/web-app/svelte/.gitignore +0 -27
- package/template/web-app/svelte/.husky/commit-msg +0 -4
- package/template/web-app/svelte/.husky/pre-commit +0 -4
- package/template/web-app/svelte/.prettierignore +0 -8
- package/template/web-app/svelte/.prettierrc +0 -21
- package/template/web-app/svelte/.svelte-kit/ambient.d.ts +0 -183
- package/template/web-app/svelte/.svelte-kit/generated/client/app.js +0 -28
- package/template/web-app/svelte/.svelte-kit/generated/client/matchers.js +0 -1
- package/template/web-app/svelte/.svelte-kit/generated/client/nodes/0.js +0 -1
- package/template/web-app/svelte/.svelte-kit/generated/client/nodes/1.js +0 -1
- package/template/web-app/svelte/.svelte-kit/generated/client/nodes/2.js +0 -1
- package/template/web-app/svelte/.svelte-kit/generated/root.js +0 -3
- package/template/web-app/svelte/.svelte-kit/generated/root.svelte +0 -66
- package/template/web-app/svelte/.svelte-kit/generated/server/internal.js +0 -49
- package/template/web-app/svelte/.svelte-kit/non-ambient.d.ts +0 -25
- package/template/web-app/svelte/.svelte-kit/tsconfig.json +0 -55
- package/template/web-app/svelte/.svelte-kit/types/route_meta_data.json +0 -3
- package/template/web-app/svelte/.svelte-kit/types/src/routes/$types.d.ts +0 -22
- package/template/web-app/svelte/.vscode/extensions.json +0 -8
- package/template/web-app/svelte/README.md +0 -38
- package/template/web-app/svelte/commitlint.config.cjs +0 -1
- package/template/web-app/svelte/eslint.config.js +0 -98
- package/template/web-app/svelte/package.json +0 -56
- package/template/web-app/svelte/scripts/createChunks.ts +0 -27
- package/template/web-app/svelte/scripts/index.ts +0 -1
- package/template/web-app/svelte/src/app.d.ts +0 -13
- package/template/web-app/svelte/src/app.html +0 -12
- package/template/web-app/svelte/src/lib/index.ts +0 -1
- package/template/web-app/svelte/src/routes/+page.svelte +0 -2
- package/template/web-app/svelte/static/favicon.png +0 -0
- package/template/web-app/svelte/svelte.config.js +0 -29
- package/template/web-app/svelte/tsconfig.json +0 -21
- package/template/web-app/svelte/vite-env.d.ts +0 -11
- package/template/web-app/svelte/vite.config.ts +0 -49
|
@@ -1,78 +1,78 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "react-vite",
|
|
3
|
-
"private": true,
|
|
4
|
-
"version": "0.0.0",
|
|
5
|
-
"type": "module",
|
|
6
|
-
"scripts": {
|
|
7
|
-
"prepare": "husky",
|
|
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
|
-
"@emotion/react": "11.14.0",
|
|
22
|
-
"@emotion/styled": "11.14.1",
|
|
23
|
-
"@tanstack/react-query": "5.51.15",
|
|
24
|
-
"axios": "1.7.9",
|
|
25
|
-
"define-zustand": "3.4.0",
|
|
26
|
-
"es-toolkit": "1.39.8",
|
|
27
|
-
"immer": "10.0.1",
|
|
28
|
-
"qs": "6.11.2",
|
|
29
|
-
"react": "18.3.1",
|
|
30
|
-
"react-dom": "18.3.1",
|
|
31
|
-
"react-router": "7.5.0",
|
|
32
|
-
"react-use": "17.5.0",
|
|
33
|
-
"type-fest": "4.33.0",
|
|
34
|
-
"zustand": "5.0.3"
|
|
35
|
-
},
|
|
36
|
-
"devDependencies": {
|
|
37
|
-
"@commitlint/cli": "17.6.1",
|
|
38
|
-
"@commitlint/config-conventional": "17.6.1",
|
|
39
|
-
"@commitlint/cz-commitlint": "17.5.0",
|
|
40
|
-
"@emotion/babel-plugin": "11.13.5",
|
|
41
|
-
"@eslint/js": "9.15.0",
|
|
42
|
-
"@faker-js/faker": "8.4.1",
|
|
43
|
-
"@types/node": "18.16.0",
|
|
44
|
-
"@types/qs": "6.9.7",
|
|
45
|
-
"@types/react": "18.3.3",
|
|
46
|
-
"@types/react-dom": "18.3.0",
|
|
47
|
-
"@vitejs/plugin-react": "5.0.1",
|
|
48
|
-
"autoprefixer": "10.4.14",
|
|
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
|
-
"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.8.2",
|
|
67
|
-
"typescript-eslint": "8.15.0",
|
|
68
|
-
"vite": "7.1.3",
|
|
69
|
-
"vite-plugin-checker": "0.10.2",
|
|
70
|
-
"vite-plugin-mock-dev-server": "1.9.3",
|
|
71
|
-
"vite-plugin-svgr": "4.5.0"
|
|
72
|
-
},
|
|
73
|
-
"config": {
|
|
74
|
-
"commitizen": {
|
|
75
|
-
"path": "@commitlint/cz-commitlint"
|
|
76
|
-
}
|
|
77
|
-
}
|
|
78
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "react-vite",
|
|
3
|
+
"private": true,
|
|
4
|
+
"version": "0.0.0",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"scripts": {
|
|
7
|
+
"prepare": "husky",
|
|
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
|
+
"@emotion/react": "11.14.0",
|
|
22
|
+
"@emotion/styled": "11.14.1",
|
|
23
|
+
"@tanstack/react-query": "5.51.15",
|
|
24
|
+
"axios": "1.7.9",
|
|
25
|
+
"define-zustand": "3.4.0",
|
|
26
|
+
"es-toolkit": "1.39.8",
|
|
27
|
+
"immer": "10.0.1",
|
|
28
|
+
"qs": "6.11.2",
|
|
29
|
+
"react": "18.3.1",
|
|
30
|
+
"react-dom": "18.3.1",
|
|
31
|
+
"react-router": "7.5.0",
|
|
32
|
+
"react-use": "17.5.0",
|
|
33
|
+
"type-fest": "4.33.0",
|
|
34
|
+
"zustand": "5.0.3"
|
|
35
|
+
},
|
|
36
|
+
"devDependencies": {
|
|
37
|
+
"@commitlint/cli": "17.6.1",
|
|
38
|
+
"@commitlint/config-conventional": "17.6.1",
|
|
39
|
+
"@commitlint/cz-commitlint": "17.5.0",
|
|
40
|
+
"@emotion/babel-plugin": "11.13.5",
|
|
41
|
+
"@eslint/js": "9.15.0",
|
|
42
|
+
"@faker-js/faker": "8.4.1",
|
|
43
|
+
"@types/node": "18.16.0",
|
|
44
|
+
"@types/qs": "6.9.7",
|
|
45
|
+
"@types/react": "18.3.3",
|
|
46
|
+
"@types/react-dom": "18.3.0",
|
|
47
|
+
"@vitejs/plugin-react": "5.0.1",
|
|
48
|
+
"autoprefixer": "10.4.14",
|
|
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
|
+
"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.8.2",
|
|
67
|
+
"typescript-eslint": "8.15.0",
|
|
68
|
+
"vite": "7.1.3",
|
|
69
|
+
"vite-plugin-checker": "0.10.2",
|
|
70
|
+
"vite-plugin-mock-dev-server": "1.9.3",
|
|
71
|
+
"vite-plugin-svgr": "4.5.0"
|
|
72
|
+
},
|
|
73
|
+
"config": {
|
|
74
|
+
"commitizen": {
|
|
75
|
+
"path": "@commitlint/cz-commitlint"
|
|
76
|
+
}
|
|
77
|
+
}
|
|
78
|
+
}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { type UseBoundStore, type StoreApi } from 'zustand'
|
|
2
|
-
export type ExtractModelType<T> = T extends UseBoundStore<StoreApi<infer S>> ? S : unknown
|
|
1
|
+
import { type UseBoundStore, type StoreApi } from 'zustand'
|
|
2
|
+
export type ExtractModelType<T> = T extends UseBoundStore<StoreApi<infer S>> ? S : unknown
|
|
@@ -1,71 +1,71 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "vue-vite",
|
|
3
|
-
"private": true,
|
|
4
|
-
"version": "0.0.0",
|
|
5
|
-
"type": "module",
|
|
6
|
-
"scripts": {
|
|
7
|
-
"prepare": "husky",
|
|
8
|
-
"dev": "vite",
|
|
9
|
-
"build": "vue-tsc --noEmit && vite build",
|
|
10
|
-
"build:analyse": "tsc --noEmit && vite build --mode analyse",
|
|
11
|
-
"preview": "vite preview",
|
|
12
|
-
"format": "prettier --write \"**/*.{vue,ts,js,tsx,jsx,json,css,scss,less}\"",
|
|
13
|
-
"lint": "vue-tsc --noEmit && eslint --no-error-on-unmatched-pattern && stylelint **/*.{css,scss,less,vue}",
|
|
14
|
-
"lint:fix": "eslint --fix && stylelint **/*.{css,scss,less,vue} --fix",
|
|
15
|
-
"cz": "cz",
|
|
16
|
-
"push": "npm run commit && git push",
|
|
17
|
-
"commit": "git add . && npm run cz",
|
|
18
|
-
"up:vite": "pnpm up vite @vitejs/* vite-plugin-* -L",
|
|
19
|
-
"up:vue": "pnpm up vue vue-router vue-tsc -L"
|
|
20
|
-
},
|
|
21
|
-
"dependencies": {
|
|
22
|
-
"axios": "1.7.9",
|
|
23
|
-
"es-toolkit": "1.39.8",
|
|
24
|
-
"pinia": "3.0.3",
|
|
25
|
-
"tailwindcss": "4.1.4",
|
|
26
|
-
"type-fest": "4.33.0",
|
|
27
|
-
"vue": "3.5.20",
|
|
28
|
-
"vue-router": "4.5.1"
|
|
29
|
-
},
|
|
30
|
-
"devDependencies": {
|
|
31
|
-
"@commitlint/cli": "17.6.1",
|
|
32
|
-
"@commitlint/config-conventional": "17.6.1",
|
|
33
|
-
"@commitlint/cz-commitlint": "17.5.0",
|
|
34
|
-
"@eslint/js": "9.15.0",
|
|
35
|
-
"@faker-js/faker": "8.4.1",
|
|
36
|
-
"@tailwindcss/vite": "4.1.4",
|
|
37
|
-
"@types/mockjs": "1.0.10",
|
|
38
|
-
"@vitejs/plugin-vue": "6.0.1",
|
|
39
|
-
"@vitejs/plugin-vue-jsx": "5.0.1",
|
|
40
|
-
"autoprefixer": "10.4.14",
|
|
41
|
-
"commitizen": "4.3.0",
|
|
42
|
-
"cssnano": "6.0.0",
|
|
43
|
-
"eslint": "9.17.0",
|
|
44
|
-
"eslint-import-resolver-typescript": "3.7.0",
|
|
45
|
-
"eslint-plugin-import": "2.31.0",
|
|
46
|
-
"eslint-plugin-vue": "9.32.0",
|
|
47
|
-
"globals": "15.12.0",
|
|
48
|
-
"husky": "9.1.6",
|
|
49
|
-
"inquirer": "8.1.2",
|
|
50
|
-
"postcss": "8.4.38",
|
|
51
|
-
"postcss-html": "1.8.0",
|
|
52
|
-
"postcss-import": "16.1.0",
|
|
53
|
-
"postcss-nesting": "12.1.1",
|
|
54
|
-
"prettier": "3.2.5",
|
|
55
|
-
"rollup-plugin-visualizer": "5.12.0",
|
|
56
|
-
"stylelint": "16.10.0",
|
|
57
|
-
"stylelint-config-standard-scss": "13.1.0",
|
|
58
|
-
"typescript": "5.8.2",
|
|
59
|
-
"typescript-eslint": "8.15.0",
|
|
60
|
-
"vite": "7.1.3",
|
|
61
|
-
"vite-plugin-checker": "0.10.2",
|
|
62
|
-
"vite-plugin-mock-dev-server": "1.9.3",
|
|
63
|
-
"vite-svg-loader": "5.1.0",
|
|
64
|
-
"vue-tsc": "3.0.6"
|
|
65
|
-
},
|
|
66
|
-
"config": {
|
|
67
|
-
"commitizen": {
|
|
68
|
-
"path": "@commitlint/cz-commitlint"
|
|
69
|
-
}
|
|
70
|
-
}
|
|
71
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "vue-vite",
|
|
3
|
+
"private": true,
|
|
4
|
+
"version": "0.0.0",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"scripts": {
|
|
7
|
+
"prepare": "husky",
|
|
8
|
+
"dev": "vite",
|
|
9
|
+
"build": "vue-tsc --noEmit && vite build",
|
|
10
|
+
"build:analyse": "tsc --noEmit && vite build --mode analyse",
|
|
11
|
+
"preview": "vite preview",
|
|
12
|
+
"format": "prettier --write \"**/*.{vue,ts,js,tsx,jsx,json,css,scss,less}\"",
|
|
13
|
+
"lint": "vue-tsc --noEmit && eslint --no-error-on-unmatched-pattern && stylelint **/*.{css,scss,less,vue}",
|
|
14
|
+
"lint:fix": "eslint --fix && stylelint **/*.{css,scss,less,vue} --fix",
|
|
15
|
+
"cz": "cz",
|
|
16
|
+
"push": "npm run commit && git push",
|
|
17
|
+
"commit": "git add . && npm run cz",
|
|
18
|
+
"up:vite": "pnpm up vite @vitejs/* vite-plugin-* -L",
|
|
19
|
+
"up:vue": "pnpm up vue vue-router vue-tsc -L"
|
|
20
|
+
},
|
|
21
|
+
"dependencies": {
|
|
22
|
+
"axios": "1.7.9",
|
|
23
|
+
"es-toolkit": "1.39.8",
|
|
24
|
+
"pinia": "3.0.3",
|
|
25
|
+
"tailwindcss": "4.1.4",
|
|
26
|
+
"type-fest": "4.33.0",
|
|
27
|
+
"vue": "3.5.20",
|
|
28
|
+
"vue-router": "4.5.1"
|
|
29
|
+
},
|
|
30
|
+
"devDependencies": {
|
|
31
|
+
"@commitlint/cli": "17.6.1",
|
|
32
|
+
"@commitlint/config-conventional": "17.6.1",
|
|
33
|
+
"@commitlint/cz-commitlint": "17.5.0",
|
|
34
|
+
"@eslint/js": "9.15.0",
|
|
35
|
+
"@faker-js/faker": "8.4.1",
|
|
36
|
+
"@tailwindcss/vite": "4.1.4",
|
|
37
|
+
"@types/mockjs": "1.0.10",
|
|
38
|
+
"@vitejs/plugin-vue": "6.0.1",
|
|
39
|
+
"@vitejs/plugin-vue-jsx": "5.0.1",
|
|
40
|
+
"autoprefixer": "10.4.14",
|
|
41
|
+
"commitizen": "4.3.0",
|
|
42
|
+
"cssnano": "6.0.0",
|
|
43
|
+
"eslint": "9.17.0",
|
|
44
|
+
"eslint-import-resolver-typescript": "3.7.0",
|
|
45
|
+
"eslint-plugin-import": "2.31.0",
|
|
46
|
+
"eslint-plugin-vue": "9.32.0",
|
|
47
|
+
"globals": "15.12.0",
|
|
48
|
+
"husky": "9.1.6",
|
|
49
|
+
"inquirer": "8.1.2",
|
|
50
|
+
"postcss": "8.4.38",
|
|
51
|
+
"postcss-html": "1.8.0",
|
|
52
|
+
"postcss-import": "16.1.0",
|
|
53
|
+
"postcss-nesting": "12.1.1",
|
|
54
|
+
"prettier": "3.2.5",
|
|
55
|
+
"rollup-plugin-visualizer": "5.12.0",
|
|
56
|
+
"stylelint": "16.10.0",
|
|
57
|
+
"stylelint-config-standard-scss": "13.1.0",
|
|
58
|
+
"typescript": "5.8.2",
|
|
59
|
+
"typescript-eslint": "8.15.0",
|
|
60
|
+
"vite": "7.1.3",
|
|
61
|
+
"vite-plugin-checker": "0.10.2",
|
|
62
|
+
"vite-plugin-mock-dev-server": "1.9.3",
|
|
63
|
+
"vite-svg-loader": "5.1.0",
|
|
64
|
+
"vue-tsc": "3.0.6"
|
|
65
|
+
},
|
|
66
|
+
"config": {
|
|
67
|
+
"commitizen": {
|
|
68
|
+
"path": "@commitlint/cz-commitlint"
|
|
69
|
+
}
|
|
70
|
+
}
|
|
71
|
+
}
|
|
@@ -1,73 +1,73 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "vue-vite",
|
|
3
|
-
"private": true,
|
|
4
|
-
"version": "0.0.0",
|
|
5
|
-
"type": "module",
|
|
6
|
-
"scripts": {
|
|
7
|
-
"prepare": "husky",
|
|
8
|
-
"dev": "rsbuild dev",
|
|
9
|
-
"build": "rsbuild build",
|
|
10
|
-
"build:analyse": "rsbuild build --env-mode analyse",
|
|
11
|
-
"build:rsdoctor": "cross-env RSDOCTOR=true rsbuild build",
|
|
12
|
-
"preview": "rsbuild preview",
|
|
13
|
-
"up:rsbuild": "pnpm up @rsbuild/* -L",
|
|
14
|
-
"format": "prettier --write \"**/*.{vue,ts,js,tsx,jsx,json,css,scss,less}\"",
|
|
15
|
-
"lint": "vue-tsc --noEmit && eslint --no-error-on-unmatched-pattern && stylelint **/*.{css,scss,less}",
|
|
16
|
-
"lint:fix": "eslint --fix && stylelint **/*.{css,scss,less} --fix",
|
|
17
|
-
"cz": "cz",
|
|
18
|
-
"push": "npm run commit && git push",
|
|
19
|
-
"commit": "git add . && npm run cz",
|
|
20
|
-
"up:vite": "pnpm up vite @vitejs/* vite-plugin-* -L"
|
|
21
|
-
},
|
|
22
|
-
"dependencies": {
|
|
23
|
-
"axios": "1.7.9",
|
|
24
|
-
"es-toolkit": "1.39.8",
|
|
25
|
-
"pinia": "3.0.3",
|
|
26
|
-
"tailwindcss": "4.1.4",
|
|
27
|
-
"type-fest": "4.33.0",
|
|
28
|
-
"vue": "3.5.20",
|
|
29
|
-
"vue-router": "4.5.1"
|
|
30
|
-
},
|
|
31
|
-
"devDependencies": {
|
|
32
|
-
"@commitlint/cli": "17.6.1",
|
|
33
|
-
"@commitlint/config-conventional": "17.6.1",
|
|
34
|
-
"@commitlint/cz-commitlint": "17.5.0",
|
|
35
|
-
"@eslint/js": "9.15.0",
|
|
36
|
-
"@faker-js/faker": "8.4.1",
|
|
37
|
-
"@rsbuild/core": "1.5.2",
|
|
38
|
-
"@rsbuild/plugin-eslint": "1.1.2",
|
|
39
|
-
"@rsbuild/plugin-type-check": "1.2.4",
|
|
40
|
-
"@rsbuild/plugin-vue": "1.1.2",
|
|
41
|
-
"@rsdoctor/rspack-plugin": "1.2.3",
|
|
42
|
-
"@tailwindcss/postcss": "4.1.4",
|
|
43
|
-
"@types/mockjs": "1.0.10",
|
|
44
|
-
"autoprefixer": "10.4.14",
|
|
45
|
-
"commitizen": "4.3.0",
|
|
46
|
-
"cross-env": "7.0.3",
|
|
47
|
-
"cssnano": "6.0.0",
|
|
48
|
-
"eslint": "9.17.0",
|
|
49
|
-
"eslint-import-resolver-typescript": "3.7.0",
|
|
50
|
-
"eslint-plugin-import": "2.31.0",
|
|
51
|
-
"eslint-plugin-vue": "9.32.0",
|
|
52
|
-
"globals": "15.12.0",
|
|
53
|
-
"husky": "9.1.6",
|
|
54
|
-
"inquirer": "8.1.2",
|
|
55
|
-
"postcss": "8.4.38",
|
|
56
|
-
"postcss-html": "1.8.0",
|
|
57
|
-
"postcss-import": "16.1.0",
|
|
58
|
-
"postcss-nesting": "12.1.1",
|
|
59
|
-
"prettier": "3.2.5",
|
|
60
|
-
"rollup-plugin-visualizer": "5.12.0",
|
|
61
|
-
"stylelint": "16.10.0",
|
|
62
|
-
"stylelint-config-standard-scss": "13.1.0",
|
|
63
|
-
"stylelint-webpack-plugin": "5.0.0",
|
|
64
|
-
"typescript": "5.8.2",
|
|
65
|
-
"typescript-eslint": "8.15.0",
|
|
66
|
-
"vue-tsc": "3.0.6"
|
|
67
|
-
},
|
|
68
|
-
"config": {
|
|
69
|
-
"commitizen": {
|
|
70
|
-
"path": "@commitlint/cz-commitlint"
|
|
71
|
-
}
|
|
72
|
-
}
|
|
73
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "vue-vite",
|
|
3
|
+
"private": true,
|
|
4
|
+
"version": "0.0.0",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"scripts": {
|
|
7
|
+
"prepare": "husky",
|
|
8
|
+
"dev": "rsbuild dev",
|
|
9
|
+
"build": "rsbuild build",
|
|
10
|
+
"build:analyse": "rsbuild build --env-mode analyse",
|
|
11
|
+
"build:rsdoctor": "cross-env RSDOCTOR=true rsbuild build",
|
|
12
|
+
"preview": "rsbuild preview",
|
|
13
|
+
"up:rsbuild": "pnpm up @rsbuild/* -L",
|
|
14
|
+
"format": "prettier --write \"**/*.{vue,ts,js,tsx,jsx,json,css,scss,less}\"",
|
|
15
|
+
"lint": "vue-tsc --noEmit && eslint --no-error-on-unmatched-pattern && stylelint **/*.{css,scss,less}",
|
|
16
|
+
"lint:fix": "eslint --fix && stylelint **/*.{css,scss,less} --fix",
|
|
17
|
+
"cz": "cz",
|
|
18
|
+
"push": "npm run commit && git push",
|
|
19
|
+
"commit": "git add . && npm run cz",
|
|
20
|
+
"up:vite": "pnpm up vite @vitejs/* vite-plugin-* -L"
|
|
21
|
+
},
|
|
22
|
+
"dependencies": {
|
|
23
|
+
"axios": "1.7.9",
|
|
24
|
+
"es-toolkit": "1.39.8",
|
|
25
|
+
"pinia": "3.0.3",
|
|
26
|
+
"tailwindcss": "4.1.4",
|
|
27
|
+
"type-fest": "4.33.0",
|
|
28
|
+
"vue": "3.5.20",
|
|
29
|
+
"vue-router": "4.5.1"
|
|
30
|
+
},
|
|
31
|
+
"devDependencies": {
|
|
32
|
+
"@commitlint/cli": "17.6.1",
|
|
33
|
+
"@commitlint/config-conventional": "17.6.1",
|
|
34
|
+
"@commitlint/cz-commitlint": "17.5.0",
|
|
35
|
+
"@eslint/js": "9.15.0",
|
|
36
|
+
"@faker-js/faker": "8.4.1",
|
|
37
|
+
"@rsbuild/core": "1.5.2",
|
|
38
|
+
"@rsbuild/plugin-eslint": "1.1.2",
|
|
39
|
+
"@rsbuild/plugin-type-check": "1.2.4",
|
|
40
|
+
"@rsbuild/plugin-vue": "1.1.2",
|
|
41
|
+
"@rsdoctor/rspack-plugin": "1.2.3",
|
|
42
|
+
"@tailwindcss/postcss": "4.1.4",
|
|
43
|
+
"@types/mockjs": "1.0.10",
|
|
44
|
+
"autoprefixer": "10.4.14",
|
|
45
|
+
"commitizen": "4.3.0",
|
|
46
|
+
"cross-env": "7.0.3",
|
|
47
|
+
"cssnano": "6.0.0",
|
|
48
|
+
"eslint": "9.17.0",
|
|
49
|
+
"eslint-import-resolver-typescript": "3.7.0",
|
|
50
|
+
"eslint-plugin-import": "2.31.0",
|
|
51
|
+
"eslint-plugin-vue": "9.32.0",
|
|
52
|
+
"globals": "15.12.0",
|
|
53
|
+
"husky": "9.1.6",
|
|
54
|
+
"inquirer": "8.1.2",
|
|
55
|
+
"postcss": "8.4.38",
|
|
56
|
+
"postcss-html": "1.8.0",
|
|
57
|
+
"postcss-import": "16.1.0",
|
|
58
|
+
"postcss-nesting": "12.1.1",
|
|
59
|
+
"prettier": "3.2.5",
|
|
60
|
+
"rollup-plugin-visualizer": "5.12.0",
|
|
61
|
+
"stylelint": "16.10.0",
|
|
62
|
+
"stylelint-config-standard-scss": "13.1.0",
|
|
63
|
+
"stylelint-webpack-plugin": "5.0.0",
|
|
64
|
+
"typescript": "5.8.2",
|
|
65
|
+
"typescript-eslint": "8.15.0",
|
|
66
|
+
"vue-tsc": "3.0.6"
|
|
67
|
+
},
|
|
68
|
+
"config": {
|
|
69
|
+
"commitizen": {
|
|
70
|
+
"path": "@commitlint/cz-commitlint"
|
|
71
|
+
}
|
|
72
|
+
}
|
|
73
|
+
}
|
|
@@ -1,86 +1,86 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "web-extension",
|
|
3
|
-
"private": true,
|
|
4
|
-
"version": "0.0.0",
|
|
5
|
-
"type": "module",
|
|
6
|
-
"scripts": {
|
|
7
|
-
"prepare": "husky",
|
|
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 **/*.{tsx,ts} && stylelint **/*.{css,scss,less,ts,tsx}",
|
|
22
|
-
"lint:fix": "eslint **/*.{tsx,ts} --fix && stylelint **/*.{css,scss,less,ts,tsx} --fix",
|
|
23
|
-
"cz": "cz",
|
|
24
|
-
"push": "npm run commit && git push",
|
|
25
|
-
"commit": "git add . && npm run cz"
|
|
26
|
-
},
|
|
27
|
-
"dependencies": {
|
|
28
|
-
"@emotion/react": "11.14.0",
|
|
29
|
-
"@emotion/styled": "11.14.1",
|
|
30
|
-
"@tanstack/react-query": "5.51.15",
|
|
31
|
-
"@webext-core/messaging": "2.2.0",
|
|
32
|
-
"axios": "1.7.9",
|
|
33
|
-
"define-zustand": "3.4.0",
|
|
34
|
-
"es-toolkit": "1.39.8",
|
|
35
|
-
"immer": "10.0.1",
|
|
36
|
-
"qs": "6.11.2",
|
|
37
|
-
"react": "18.3.1",
|
|
38
|
-
"react-dom": "18.3.1",
|
|
39
|
-
"type-fest": "4.33.0",
|
|
40
|
-
"zustand": "5.0.3"
|
|
41
|
-
},
|
|
42
|
-
"devDependencies": {
|
|
43
|
-
"@commitlint/cli": "17.6.1",
|
|
44
|
-
"@commitlint/config-conventional": "17.6.1",
|
|
45
|
-
"@commitlint/cz-commitlint": "17.5.0",
|
|
46
|
-
"@emotion/babel-plugin": "11.13.5",
|
|
47
|
-
"@eslint/js": "9.15.0",
|
|
48
|
-
"@types/chrome": "0.0.254",
|
|
49
|
-
"@types/node": "18.16.0",
|
|
50
|
-
"@types/qs": "6.9.7",
|
|
51
|
-
"@types/react": "18.3.3",
|
|
52
|
-
"@types/react-dom": "18.3.0",
|
|
53
|
-
"@vitejs/plugin-react": "5.0.1",
|
|
54
|
-
"autoprefixer": "10.4.14",
|
|
55
|
-
"commitizen": "4.3.0",
|
|
56
|
-
"cssnano": "6.0.0",
|
|
57
|
-
"eslint": "9.17.0",
|
|
58
|
-
"eslint-import-resolver-typescript": "3.7.0",
|
|
59
|
-
"eslint-plugin-import": "2.31.0",
|
|
60
|
-
"eslint-plugin-react": "7.37.2",
|
|
61
|
-
"eslint-plugin-react-hooks": "5.1.0",
|
|
62
|
-
"globals": "15.12.0",
|
|
63
|
-
"husky": "9.1.6",
|
|
64
|
-
"inquirer": "^8.1.2",
|
|
65
|
-
"postcss": "8.4.31",
|
|
66
|
-
"postcss-import": "15.1.0",
|
|
67
|
-
"postcss-nesting": "11.2.2",
|
|
68
|
-
"postcss-scss": "4.0.9",
|
|
69
|
-
"postcss-styled-syntax": "0.6.4",
|
|
70
|
-
"prettier": "3.2.5",
|
|
71
|
-
"rimraf": "5.0.1",
|
|
72
|
-
"sass": "1.63.4",
|
|
73
|
-
"stylelint": "16.10.0",
|
|
74
|
-
"stylelint-config-standard": "36.0.1",
|
|
75
|
-
"typescript": "5.8.2",
|
|
76
|
-
"typescript-eslint": "8.28.0",
|
|
77
|
-
"vite": "7.1.3",
|
|
78
|
-
"vite-plugin-svgr": "4.5.0",
|
|
79
|
-
"wxt": "0.20.5"
|
|
80
|
-
},
|
|
81
|
-
"config": {
|
|
82
|
-
"commitizen": {
|
|
83
|
-
"path": "@commitlint/cz-commitlint"
|
|
84
|
-
}
|
|
85
|
-
}
|
|
86
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "web-extension",
|
|
3
|
+
"private": true,
|
|
4
|
+
"version": "0.0.0",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"scripts": {
|
|
7
|
+
"prepare": "husky",
|
|
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 **/*.{tsx,ts} && stylelint **/*.{css,scss,less,ts,tsx}",
|
|
22
|
+
"lint:fix": "eslint **/*.{tsx,ts} --fix && stylelint **/*.{css,scss,less,ts,tsx} --fix",
|
|
23
|
+
"cz": "cz",
|
|
24
|
+
"push": "npm run commit && git push",
|
|
25
|
+
"commit": "git add . && npm run cz"
|
|
26
|
+
},
|
|
27
|
+
"dependencies": {
|
|
28
|
+
"@emotion/react": "11.14.0",
|
|
29
|
+
"@emotion/styled": "11.14.1",
|
|
30
|
+
"@tanstack/react-query": "5.51.15",
|
|
31
|
+
"@webext-core/messaging": "2.2.0",
|
|
32
|
+
"axios": "1.7.9",
|
|
33
|
+
"define-zustand": "3.4.0",
|
|
34
|
+
"es-toolkit": "1.39.8",
|
|
35
|
+
"immer": "10.0.1",
|
|
36
|
+
"qs": "6.11.2",
|
|
37
|
+
"react": "18.3.1",
|
|
38
|
+
"react-dom": "18.3.1",
|
|
39
|
+
"type-fest": "4.33.0",
|
|
40
|
+
"zustand": "5.0.3"
|
|
41
|
+
},
|
|
42
|
+
"devDependencies": {
|
|
43
|
+
"@commitlint/cli": "17.6.1",
|
|
44
|
+
"@commitlint/config-conventional": "17.6.1",
|
|
45
|
+
"@commitlint/cz-commitlint": "17.5.0",
|
|
46
|
+
"@emotion/babel-plugin": "11.13.5",
|
|
47
|
+
"@eslint/js": "9.15.0",
|
|
48
|
+
"@types/chrome": "0.0.254",
|
|
49
|
+
"@types/node": "18.16.0",
|
|
50
|
+
"@types/qs": "6.9.7",
|
|
51
|
+
"@types/react": "18.3.3",
|
|
52
|
+
"@types/react-dom": "18.3.0",
|
|
53
|
+
"@vitejs/plugin-react": "5.0.1",
|
|
54
|
+
"autoprefixer": "10.4.14",
|
|
55
|
+
"commitizen": "4.3.0",
|
|
56
|
+
"cssnano": "6.0.0",
|
|
57
|
+
"eslint": "9.17.0",
|
|
58
|
+
"eslint-import-resolver-typescript": "3.7.0",
|
|
59
|
+
"eslint-plugin-import": "2.31.0",
|
|
60
|
+
"eslint-plugin-react": "7.37.2",
|
|
61
|
+
"eslint-plugin-react-hooks": "5.1.0",
|
|
62
|
+
"globals": "15.12.0",
|
|
63
|
+
"husky": "9.1.6",
|
|
64
|
+
"inquirer": "^8.1.2",
|
|
65
|
+
"postcss": "8.4.31",
|
|
66
|
+
"postcss-import": "15.1.0",
|
|
67
|
+
"postcss-nesting": "11.2.2",
|
|
68
|
+
"postcss-scss": "4.0.9",
|
|
69
|
+
"postcss-styled-syntax": "0.6.4",
|
|
70
|
+
"prettier": "3.2.5",
|
|
71
|
+
"rimraf": "5.0.1",
|
|
72
|
+
"sass": "1.63.4",
|
|
73
|
+
"stylelint": "16.10.0",
|
|
74
|
+
"stylelint-config-standard": "36.0.1",
|
|
75
|
+
"typescript": "5.8.2",
|
|
76
|
+
"typescript-eslint": "8.28.0",
|
|
77
|
+
"vite": "7.1.3",
|
|
78
|
+
"vite-plugin-svgr": "4.5.0",
|
|
79
|
+
"wxt": "0.20.5"
|
|
80
|
+
},
|
|
81
|
+
"config": {
|
|
82
|
+
"commitizen": {
|
|
83
|
+
"path": "@commitlint/cz-commitlint"
|
|
84
|
+
}
|
|
85
|
+
}
|
|
86
|
+
}
|