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
package/package.json
CHANGED
|
@@ -1,52 +1,52 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "docusaurus-test",
|
|
3
|
-
"version": "0.0.0",
|
|
4
|
-
"private": true,
|
|
5
|
-
"scripts": {
|
|
6
|
-
"up:docusaurus": "pnpm up @tsconfig/docusaurus @docusaurus/* -L",
|
|
7
|
-
"docusaurus": "docusaurus",
|
|
8
|
-
"start": "docusaurus start",
|
|
9
|
-
"build": "docusaurus build",
|
|
10
|
-
"swizzle": "docusaurus swizzle",
|
|
11
|
-
"deploy": "docusaurus deploy",
|
|
12
|
-
"clear": "docusaurus clear",
|
|
13
|
-
"serve": "docusaurus serve",
|
|
14
|
-
"write-translations": "docusaurus write-translations",
|
|
15
|
-
"write-heading-ids": "docusaurus write-heading-ids",
|
|
16
|
-
"format": "prettier --write \"./src/**/*.{ts,js,tsx,jsx,json,css,scss,less}\"",
|
|
17
|
-
"typecheck": "tsc"
|
|
18
|
-
},
|
|
19
|
-
"dependencies": {
|
|
20
|
-
"@docusaurus/core": "2.4.1",
|
|
21
|
-
"@docusaurus/preset-classic": "2.4.1",
|
|
22
|
-
"@mdx-js/react": "1.6.22",
|
|
23
|
-
"clsx": "1.2.1",
|
|
24
|
-
"prism-react-renderer": "1.3.5",
|
|
25
|
-
"react": "18.2.0",
|
|
26
|
-
"react-dom": "18.2.0"
|
|
27
|
-
},
|
|
28
|
-
"devDependencies": {
|
|
29
|
-
"@docusaurus/module-type-aliases": "2.4.1",
|
|
30
|
-
"@docusaurus/theme-live-codeblock": "2.4.1",
|
|
31
|
-
"@docusaurus/types": "2.4.1",
|
|
32
|
-
"@easyops-cn/docusaurus-search-local": "^0.36.0",
|
|
33
|
-
"@tsconfig/docusaurus": "1.0.5",
|
|
34
|
-
"prettier": "3.2.5",
|
|
35
|
-
"typescript": "5.8.2"
|
|
36
|
-
},
|
|
37
|
-
"browserslist": {
|
|
38
|
-
"production": [
|
|
39
|
-
">0.5%",
|
|
40
|
-
"not dead",
|
|
41
|
-
"not op_mini all"
|
|
42
|
-
],
|
|
43
|
-
"development": [
|
|
44
|
-
"last 1 chrome version",
|
|
45
|
-
"last 1 firefox version",
|
|
46
|
-
"last 1 safari version"
|
|
47
|
-
]
|
|
48
|
-
},
|
|
49
|
-
"engines": {
|
|
50
|
-
"node": ">=16.14"
|
|
51
|
-
}
|
|
52
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "docusaurus-test",
|
|
3
|
+
"version": "0.0.0",
|
|
4
|
+
"private": true,
|
|
5
|
+
"scripts": {
|
|
6
|
+
"up:docusaurus": "pnpm up @tsconfig/docusaurus @docusaurus/* -L",
|
|
7
|
+
"docusaurus": "docusaurus",
|
|
8
|
+
"start": "docusaurus start",
|
|
9
|
+
"build": "docusaurus build",
|
|
10
|
+
"swizzle": "docusaurus swizzle",
|
|
11
|
+
"deploy": "docusaurus deploy",
|
|
12
|
+
"clear": "docusaurus clear",
|
|
13
|
+
"serve": "docusaurus serve",
|
|
14
|
+
"write-translations": "docusaurus write-translations",
|
|
15
|
+
"write-heading-ids": "docusaurus write-heading-ids",
|
|
16
|
+
"format": "prettier --write \"./src/**/*.{ts,js,tsx,jsx,json,css,scss,less}\"",
|
|
17
|
+
"typecheck": "tsc"
|
|
18
|
+
},
|
|
19
|
+
"dependencies": {
|
|
20
|
+
"@docusaurus/core": "2.4.1",
|
|
21
|
+
"@docusaurus/preset-classic": "2.4.1",
|
|
22
|
+
"@mdx-js/react": "1.6.22",
|
|
23
|
+
"clsx": "1.2.1",
|
|
24
|
+
"prism-react-renderer": "1.3.5",
|
|
25
|
+
"react": "18.2.0",
|
|
26
|
+
"react-dom": "18.2.0"
|
|
27
|
+
},
|
|
28
|
+
"devDependencies": {
|
|
29
|
+
"@docusaurus/module-type-aliases": "2.4.1",
|
|
30
|
+
"@docusaurus/theme-live-codeblock": "2.4.1",
|
|
31
|
+
"@docusaurus/types": "2.4.1",
|
|
32
|
+
"@easyops-cn/docusaurus-search-local": "^0.36.0",
|
|
33
|
+
"@tsconfig/docusaurus": "1.0.5",
|
|
34
|
+
"prettier": "3.2.5",
|
|
35
|
+
"typescript": "5.8.2"
|
|
36
|
+
},
|
|
37
|
+
"browserslist": {
|
|
38
|
+
"production": [
|
|
39
|
+
">0.5%",
|
|
40
|
+
"not dead",
|
|
41
|
+
"not op_mini all"
|
|
42
|
+
],
|
|
43
|
+
"development": [
|
|
44
|
+
"last 1 chrome version",
|
|
45
|
+
"last 1 firefox version",
|
|
46
|
+
"last 1 safari version"
|
|
47
|
+
]
|
|
48
|
+
},
|
|
49
|
+
"engines": {
|
|
50
|
+
"node": ">=16.14"
|
|
51
|
+
}
|
|
52
|
+
}
|
|
@@ -1,77 +1,77 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "my-lib",
|
|
3
|
-
"version": "1.0.0",
|
|
4
|
-
"description": "",
|
|
5
|
-
"private": true,
|
|
6
|
-
"main": "index.js",
|
|
7
|
-
"scripts": {
|
|
8
|
-
"eslint": "eslint",
|
|
9
|
-
"eslint:fix": "eslint --fix",
|
|
10
|
-
"stylelint": "stylelint packages/**/*.{css,scss,less,ts,tsx}",
|
|
11
|
-
"stylelint:fix": "stylelint packages/**/*.{css,scss,less,ts,tsx} --fix",
|
|
12
|
-
"lint": "pnpm -r run lint && pnpm eslint && pnpm stylelint",
|
|
13
|
-
"lint:fix": "pnpm -r run lint && pnpm eslint:fix && pnpm stylelint:fix",
|
|
14
|
-
"build": "ts-node --project ./tsconfig.node.json ./scripts/build.ts",
|
|
15
|
-
"changeVersion": "pnpm changeset && pnpm changeset version && pnpm run clear:changelog",
|
|
16
|
-
"clear:changelog": "pnpm -r exec rimraf CHANGELOG.md",
|
|
17
|
-
"commit": "git add . && cz",
|
|
18
|
-
"push": "pnpm run commit && git push",
|
|
19
|
-
"login": "npm login --registry https://registry.npmjs.org",
|
|
20
|
-
"clean:dist": "pnpm -r exec rimraf dist",
|
|
21
|
-
"format": "prettier --write \"**/*.{ts,js,tsx,jsx,json,css,scss,less}\"",
|
|
22
|
-
"pub": "pnpm run build && pnpm run changeVersion && pnpm run push && pnpm -r publish --registry https://registry.npmjs.org",
|
|
23
|
-
"storybook": "storybook dev -p 6006",
|
|
24
|
-
"build-storybook": "storybook build",
|
|
25
|
-
"up:storybook": "pnpm up storybook eslint-plugin-storybook @storybook/* -L"
|
|
26
|
-
},
|
|
27
|
-
"keywords": [],
|
|
28
|
-
"author": "kevily",
|
|
29
|
-
"license": "ISC",
|
|
30
|
-
"config": {
|
|
31
|
-
"commitizen": {
|
|
32
|
-
"path": "@commitlint/cz-commitlint"
|
|
33
|
-
}
|
|
34
|
-
},
|
|
35
|
-
"dependencies": {
|
|
36
|
-
"1k-tasks": "4.2.1",
|
|
37
|
-
"@commitlint/config-conventional": "17.6.6",
|
|
38
|
-
"@commitlint/cz-commitlint": "17.5.0",
|
|
39
|
-
"@eslint/js": "9.15.0",
|
|
40
|
-
"commitizen": "4.3.0",
|
|
41
|
-
"rimraf": "5.0.1"
|
|
42
|
-
},
|
|
43
|
-
"devDependencies": {
|
|
44
|
-
"@changesets/cli": "2.26.2",
|
|
45
|
-
"@eslint/js": "9.15.0",
|
|
46
|
-
"@storybook/addon-docs": "9.1.2",
|
|
47
|
-
"@storybook/react-vite": "9.1.2",
|
|
48
|
-
"@svgr/rollup": "8.1.0",
|
|
49
|
-
"@types/node": "20.3.2",
|
|
50
|
-
"@types/react": "18.3.3",
|
|
51
|
-
"@types/react-dom": "18.3.0",
|
|
52
|
-
"autoprefixer": "10.4.14",
|
|
53
|
-
"eslint": "9.17.0",
|
|
54
|
-
"eslint-import-resolver-typescript": "3.7.0",
|
|
55
|
-
"eslint-plugin-import": "2.31.0",
|
|
56
|
-
"eslint-plugin-react": "7.37.2",
|
|
57
|
-
"eslint-plugin-react-hooks": "5.1.0",
|
|
58
|
-
"eslint-plugin-storybook": "9.1.2",
|
|
59
|
-
"globals": "15.12.0",
|
|
60
|
-
"inquirer": "^8.1.2",
|
|
61
|
-
"postcss": "8.4.31",
|
|
62
|
-
"postcss-import": "15.1.0",
|
|
63
|
-
"postcss-nesting": "12.0.0",
|
|
64
|
-
"postcss-scss": "4.0.6",
|
|
65
|
-
"postcss-styled-syntax": "0.6.4",
|
|
66
|
-
"prettier": "3.2.5",
|
|
67
|
-
"prop-types": "15.8.1",
|
|
68
|
-
"react": "18.2.0",
|
|
69
|
-
"react-dom": "18.2.0",
|
|
70
|
-
"storybook": "9.1.2",
|
|
71
|
-
"stylelint": "16.10.0",
|
|
72
|
-
"stylelint-config-standard-scss": "13.0.0",
|
|
73
|
-
"ts-node": "10.9.1",
|
|
74
|
-
"typescript": "5.8.2",
|
|
75
|
-
"typescript-eslint": "8.15.0"
|
|
76
|
-
}
|
|
77
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "my-lib",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "",
|
|
5
|
+
"private": true,
|
|
6
|
+
"main": "index.js",
|
|
7
|
+
"scripts": {
|
|
8
|
+
"eslint": "eslint",
|
|
9
|
+
"eslint:fix": "eslint --fix",
|
|
10
|
+
"stylelint": "stylelint packages/**/*.{css,scss,less,ts,tsx}",
|
|
11
|
+
"stylelint:fix": "stylelint packages/**/*.{css,scss,less,ts,tsx} --fix",
|
|
12
|
+
"lint": "pnpm -r run lint && pnpm eslint && pnpm stylelint",
|
|
13
|
+
"lint:fix": "pnpm -r run lint && pnpm eslint:fix && pnpm stylelint:fix",
|
|
14
|
+
"build": "ts-node --project ./tsconfig.node.json ./scripts/build.ts",
|
|
15
|
+
"changeVersion": "pnpm changeset && pnpm changeset version && pnpm run clear:changelog",
|
|
16
|
+
"clear:changelog": "pnpm -r exec rimraf CHANGELOG.md",
|
|
17
|
+
"commit": "git add . && cz",
|
|
18
|
+
"push": "pnpm run commit && git push",
|
|
19
|
+
"login": "npm login --registry https://registry.npmjs.org",
|
|
20
|
+
"clean:dist": "pnpm -r exec rimraf dist",
|
|
21
|
+
"format": "prettier --write \"**/*.{ts,js,tsx,jsx,json,css,scss,less}\"",
|
|
22
|
+
"pub": "pnpm run build && pnpm run changeVersion && pnpm run push && pnpm -r publish --registry https://registry.npmjs.org",
|
|
23
|
+
"storybook": "storybook dev -p 6006",
|
|
24
|
+
"build-storybook": "storybook build",
|
|
25
|
+
"up:storybook": "pnpm up storybook eslint-plugin-storybook @storybook/* -L"
|
|
26
|
+
},
|
|
27
|
+
"keywords": [],
|
|
28
|
+
"author": "kevily",
|
|
29
|
+
"license": "ISC",
|
|
30
|
+
"config": {
|
|
31
|
+
"commitizen": {
|
|
32
|
+
"path": "@commitlint/cz-commitlint"
|
|
33
|
+
}
|
|
34
|
+
},
|
|
35
|
+
"dependencies": {
|
|
36
|
+
"1k-tasks": "4.2.1",
|
|
37
|
+
"@commitlint/config-conventional": "17.6.6",
|
|
38
|
+
"@commitlint/cz-commitlint": "17.5.0",
|
|
39
|
+
"@eslint/js": "9.15.0",
|
|
40
|
+
"commitizen": "4.3.0",
|
|
41
|
+
"rimraf": "5.0.1"
|
|
42
|
+
},
|
|
43
|
+
"devDependencies": {
|
|
44
|
+
"@changesets/cli": "2.26.2",
|
|
45
|
+
"@eslint/js": "9.15.0",
|
|
46
|
+
"@storybook/addon-docs": "9.1.2",
|
|
47
|
+
"@storybook/react-vite": "9.1.2",
|
|
48
|
+
"@svgr/rollup": "8.1.0",
|
|
49
|
+
"@types/node": "20.3.2",
|
|
50
|
+
"@types/react": "18.3.3",
|
|
51
|
+
"@types/react-dom": "18.3.0",
|
|
52
|
+
"autoprefixer": "10.4.14",
|
|
53
|
+
"eslint": "9.17.0",
|
|
54
|
+
"eslint-import-resolver-typescript": "3.7.0",
|
|
55
|
+
"eslint-plugin-import": "2.31.0",
|
|
56
|
+
"eslint-plugin-react": "7.37.2",
|
|
57
|
+
"eslint-plugin-react-hooks": "5.1.0",
|
|
58
|
+
"eslint-plugin-storybook": "9.1.2",
|
|
59
|
+
"globals": "15.12.0",
|
|
60
|
+
"inquirer": "^8.1.2",
|
|
61
|
+
"postcss": "8.4.31",
|
|
62
|
+
"postcss-import": "15.1.0",
|
|
63
|
+
"postcss-nesting": "12.0.0",
|
|
64
|
+
"postcss-scss": "4.0.6",
|
|
65
|
+
"postcss-styled-syntax": "0.6.4",
|
|
66
|
+
"prettier": "3.2.5",
|
|
67
|
+
"prop-types": "15.8.1",
|
|
68
|
+
"react": "18.2.0",
|
|
69
|
+
"react-dom": "18.2.0",
|
|
70
|
+
"storybook": "9.1.2",
|
|
71
|
+
"stylelint": "16.10.0",
|
|
72
|
+
"stylelint-config-standard-scss": "13.0.0",
|
|
73
|
+
"ts-node": "10.9.1",
|
|
74
|
+
"typescript": "5.8.2",
|
|
75
|
+
"typescript-eslint": "8.15.0"
|
|
76
|
+
}
|
|
77
|
+
}
|
|
@@ -1,30 +1,30 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "ts-lib",
|
|
3
|
-
"version": "1.0.0",
|
|
4
|
-
"description": "",
|
|
5
|
-
"main": "dist/index.js",
|
|
6
|
-
"types": "dist/index.d.ts",
|
|
7
|
-
"sideEffects": false,
|
|
8
|
-
"scripts": {
|
|
9
|
-
"lint": "tsc --noEmit -p tsconfig.lint.json",
|
|
10
|
-
"build": "tsc",
|
|
11
|
-
"test": "vitest",
|
|
12
|
-
"coverage": "vitest run --coverage"
|
|
13
|
-
},
|
|
14
|
-
"files": [
|
|
15
|
-
"dist"
|
|
16
|
-
],
|
|
17
|
-
"license": "ISC",
|
|
18
|
-
"devDependencies": {
|
|
19
|
-
"@vitest/coverage-v8": "3.1.2",
|
|
20
|
-
"eslint": "9.17.0",
|
|
21
|
-
"eslint-import-resolver-typescript": "3.7.0",
|
|
22
|
-
"eslint-plugin-import": "2.31.0",
|
|
23
|
-
"prettier": "3.2.5",
|
|
24
|
-
"stylelint": "16.10.0",
|
|
25
|
-
"stylelint-config-standard-scss": "13.0.0",
|
|
26
|
-
"typescript": "5.8.2",
|
|
27
|
-
"typescript-eslint": "8.15.0",
|
|
28
|
-
"vitest": "3.1.2"
|
|
29
|
-
}
|
|
30
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "ts-lib",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "",
|
|
5
|
+
"main": "dist/index.js",
|
|
6
|
+
"types": "dist/index.d.ts",
|
|
7
|
+
"sideEffects": false,
|
|
8
|
+
"scripts": {
|
|
9
|
+
"lint": "tsc --noEmit -p tsconfig.lint.json",
|
|
10
|
+
"build": "tsc",
|
|
11
|
+
"test": "vitest",
|
|
12
|
+
"coverage": "vitest run --coverage"
|
|
13
|
+
},
|
|
14
|
+
"files": [
|
|
15
|
+
"dist"
|
|
16
|
+
],
|
|
17
|
+
"license": "ISC",
|
|
18
|
+
"devDependencies": {
|
|
19
|
+
"@vitest/coverage-v8": "3.1.2",
|
|
20
|
+
"eslint": "9.17.0",
|
|
21
|
+
"eslint-import-resolver-typescript": "3.7.0",
|
|
22
|
+
"eslint-plugin-import": "2.31.0",
|
|
23
|
+
"prettier": "3.2.5",
|
|
24
|
+
"stylelint": "16.10.0",
|
|
25
|
+
"stylelint-config-standard-scss": "13.0.0",
|
|
26
|
+
"typescript": "5.8.2",
|
|
27
|
+
"typescript-eslint": "8.15.0",
|
|
28
|
+
"vitest": "3.1.2"
|
|
29
|
+
}
|
|
30
|
+
}
|
|
@@ -1,27 +1,27 @@
|
|
|
1
|
-
/// <reference types="@rsbuild/core/types" />
|
|
2
|
-
import '@emotion/react'
|
|
3
|
-
import { type themeType } from '@/shared/styles'
|
|
4
|
-
|
|
5
|
-
declare global {
|
|
6
|
-
interface ImportMetaEnv {
|
|
7
|
-
readonly PUBLIC_BASE_URL: string
|
|
8
|
-
readonly PUBLIC_API_HOST: string
|
|
9
|
-
}
|
|
10
|
-
|
|
11
|
-
interface ImportMeta {
|
|
12
|
-
readonly env: ImportMetaEnv
|
|
13
|
-
}
|
|
14
|
-
}
|
|
15
|
-
declare module '*.svg' {
|
|
16
|
-
const content: string
|
|
17
|
-
export default content
|
|
18
|
-
}
|
|
19
|
-
|
|
20
|
-
declare module '*.svg?react' {
|
|
21
|
-
const ReactComponent: FunctionComponent<SVGProps<SVGSVGElement>>
|
|
22
|
-
export default ReactComponent
|
|
23
|
-
}
|
|
24
|
-
|
|
25
|
-
declare module '@emotion/react' {
|
|
26
|
-
export interface Theme extends themeType {}
|
|
27
|
-
}
|
|
1
|
+
/// <reference types="@rsbuild/core/types" />
|
|
2
|
+
import '@emotion/react'
|
|
3
|
+
import { type themeType } from '@/shared/styles'
|
|
4
|
+
|
|
5
|
+
declare global {
|
|
6
|
+
interface ImportMetaEnv {
|
|
7
|
+
readonly PUBLIC_BASE_URL: string
|
|
8
|
+
readonly PUBLIC_API_HOST: string
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
interface ImportMeta {
|
|
12
|
+
readonly env: ImportMetaEnv
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
declare module '*.svg' {
|
|
16
|
+
const content: string
|
|
17
|
+
export default content
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
declare module '*.svg?react' {
|
|
21
|
+
const ReactComponent: FunctionComponent<SVGProps<SVGSVGElement>>
|
|
22
|
+
export default ReactComponent
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
declare module '@emotion/react' {
|
|
26
|
+
export interface Theme extends themeType {}
|
|
27
|
+
}
|
|
@@ -1,79 +1,79 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "react-rsbuild",
|
|
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 \"**/*.{ts,js,tsx,jsx,json,css,scss,less}\"",
|
|
15
|
-
"lint": "tsc --noEmit && eslint --no-error-on-unmatched-pattern && stylelint **/*.{css,scss,less,ts,tsx}",
|
|
16
|
-
"lint:fix": "eslint --fix && stylelint **/*.{css,scss,less,ts,tsx} --fix",
|
|
17
|
-
"cz": "cz",
|
|
18
|
-
"push": "npm run commit && git push",
|
|
19
|
-
"commit": "git add . && npm run cz"
|
|
20
|
-
},
|
|
21
|
-
"dependencies": {
|
|
22
|
-
"@emotion/react": "11.14.0",
|
|
23
|
-
"@emotion/styled": "11.14.1",
|
|
24
|
-
"@tanstack/react-query": "5.51.15",
|
|
25
|
-
"axios": "1.7.9",
|
|
26
|
-
"define-zustand": "3.4.0",
|
|
27
|
-
"es-toolkit": "1.39.8",
|
|
28
|
-
"immer": "10.0.1",
|
|
29
|
-
"qs": "6.11.2",
|
|
30
|
-
"react": "18.3.1",
|
|
31
|
-
"react-dom": "18.3.1",
|
|
32
|
-
"react-router": "7.5.0",
|
|
33
|
-
"react-use": "17.5.0",
|
|
34
|
-
"type-fest": "4.33.0",
|
|
35
|
-
"zustand": "5.0.3"
|
|
36
|
-
},
|
|
37
|
-
"devDependencies": {
|
|
38
|
-
"@commitlint/cli": "17.6.1",
|
|
39
|
-
"@commitlint/config-conventional": "17.6.1",
|
|
40
|
-
"@commitlint/cz-commitlint": "17.5.0",
|
|
41
|
-
"@eslint/js": "9.15.0",
|
|
42
|
-
"@rsbuild/core": "1.5.2",
|
|
43
|
-
"@rsbuild/plugin-eslint": "1.1.2",
|
|
44
|
-
"@rsbuild/plugin-react": "1.4.0",
|
|
45
|
-
"@rsbuild/plugin-svgr": "1.2.2",
|
|
46
|
-
"@rsbuild/plugin-type-check": "1.2.4",
|
|
47
|
-
"@rsdoctor/rspack-plugin": "1.2.3",
|
|
48
|
-
"@swc/plugin-emotion": "11.1.0",
|
|
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
|
-
"autoprefixer": "10.4.14",
|
|
54
|
-
"commitizen": "4.3.0",
|
|
55
|
-
"cross-env": "7.0.3",
|
|
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
|
-
"postcss": "8.4.35",
|
|
65
|
-
"postcss-import": "16.0.1",
|
|
66
|
-
"postcss-nesting": "12.0.3",
|
|
67
|
-
"postcss-styled-syntax": "0.6.4",
|
|
68
|
-
"prettier": "3.2.5",
|
|
69
|
-
"stylelint": "16.10.0",
|
|
70
|
-
"stylelint-config-standard": "36.0.1",
|
|
71
|
-
"stylelint-webpack-plugin": "5.0.0",
|
|
72
|
-
"typescript": "5.8.2"
|
|
73
|
-
},
|
|
74
|
-
"config": {
|
|
75
|
-
"commitizen": {
|
|
76
|
-
"path": "@commitlint/cz-commitlint"
|
|
77
|
-
}
|
|
78
|
-
}
|
|
79
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "react-rsbuild",
|
|
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 \"**/*.{ts,js,tsx,jsx,json,css,scss,less}\"",
|
|
15
|
+
"lint": "tsc --noEmit && eslint --no-error-on-unmatched-pattern && stylelint **/*.{css,scss,less,ts,tsx}",
|
|
16
|
+
"lint:fix": "eslint --fix && stylelint **/*.{css,scss,less,ts,tsx} --fix",
|
|
17
|
+
"cz": "cz",
|
|
18
|
+
"push": "npm run commit && git push",
|
|
19
|
+
"commit": "git add . && npm run cz"
|
|
20
|
+
},
|
|
21
|
+
"dependencies": {
|
|
22
|
+
"@emotion/react": "11.14.0",
|
|
23
|
+
"@emotion/styled": "11.14.1",
|
|
24
|
+
"@tanstack/react-query": "5.51.15",
|
|
25
|
+
"axios": "1.7.9",
|
|
26
|
+
"define-zustand": "3.4.0",
|
|
27
|
+
"es-toolkit": "1.39.8",
|
|
28
|
+
"immer": "10.0.1",
|
|
29
|
+
"qs": "6.11.2",
|
|
30
|
+
"react": "18.3.1",
|
|
31
|
+
"react-dom": "18.3.1",
|
|
32
|
+
"react-router": "7.5.0",
|
|
33
|
+
"react-use": "17.5.0",
|
|
34
|
+
"type-fest": "4.33.0",
|
|
35
|
+
"zustand": "5.0.3"
|
|
36
|
+
},
|
|
37
|
+
"devDependencies": {
|
|
38
|
+
"@commitlint/cli": "17.6.1",
|
|
39
|
+
"@commitlint/config-conventional": "17.6.1",
|
|
40
|
+
"@commitlint/cz-commitlint": "17.5.0",
|
|
41
|
+
"@eslint/js": "9.15.0",
|
|
42
|
+
"@rsbuild/core": "1.5.2",
|
|
43
|
+
"@rsbuild/plugin-eslint": "1.1.2",
|
|
44
|
+
"@rsbuild/plugin-react": "1.4.0",
|
|
45
|
+
"@rsbuild/plugin-svgr": "1.2.2",
|
|
46
|
+
"@rsbuild/plugin-type-check": "1.2.4",
|
|
47
|
+
"@rsdoctor/rspack-plugin": "1.2.3",
|
|
48
|
+
"@swc/plugin-emotion": "11.1.0",
|
|
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
|
+
"autoprefixer": "10.4.14",
|
|
54
|
+
"commitizen": "4.3.0",
|
|
55
|
+
"cross-env": "7.0.3",
|
|
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
|
+
"postcss": "8.4.35",
|
|
65
|
+
"postcss-import": "16.0.1",
|
|
66
|
+
"postcss-nesting": "12.0.3",
|
|
67
|
+
"postcss-styled-syntax": "0.6.4",
|
|
68
|
+
"prettier": "3.2.5",
|
|
69
|
+
"stylelint": "16.10.0",
|
|
70
|
+
"stylelint-config-standard": "36.0.1",
|
|
71
|
+
"stylelint-webpack-plugin": "5.0.0",
|
|
72
|
+
"typescript": "5.8.2"
|
|
73
|
+
},
|
|
74
|
+
"config": {
|
|
75
|
+
"commitizen": {
|
|
76
|
+
"path": "@commitlint/cz-commitlint"
|
|
77
|
+
}
|
|
78
|
+
}
|
|
79
|
+
}
|