create-lik-app 1.0.2 → 1.1.3
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/index.mjs +73 -73
- package/package.json +2 -3
- package/templates/template-react/_gitignore +3 -0
- package/templates/template-react/{plugins/index.ts → config/build/_base.ts} +16 -4
- package/templates/template-react/config/build/development.ts +7 -0
- package/templates/template-react/config/build/production.ts +1 -0
- package/templates/template-react/config/build/test.ts +1 -0
- package/templates/template-react/src/components/Lic/index.tsx +1 -1
- package/templates/template-react/src/main.tsx +1 -1
- package/templates/template-react/src/store/index.ts +1 -2
- package/templates/template-react/src/styles/main.css +10 -0
- package/templates/template-react/{types → src/types}/auto-imports.d.ts +21 -0
- package/templates/template-react/src/views/Home/components/React/index.tsx +2 -3
- package/templates/template-react/src/views/Home/index.tsx +0 -1
- package/templates/template-react/src/views/Layout/index.tsx +0 -1
- package/templates/template-react/tsconfig.node.json +1 -6
- package/templates/template-react/vite.config.ts +13 -16
- package/templates/template-react-tanstack-jotai/.husky/commit-msg +6 -0
- package/templates/template-react-tanstack-jotai/.husky/lintstagedrc.cjs +8 -0
- package/templates/template-react-tanstack-jotai/.husky/pre-commit +10 -0
- package/templates/template-react-tanstack-jotai/.prettierignore +13 -0
- package/templates/template-react-tanstack-jotai/.vscode/extensions.json +5 -0
- package/templates/template-react-tanstack-jotai/README.md +40 -0
- package/templates/template-react-tanstack-jotai/_gitignore +27 -0
- package/templates/template-react-tanstack-jotai/commitlint.config.mjs +28 -0
- package/templates/template-react-tanstack-jotai/config/build/_base.ts +38 -0
- package/templates/template-react-tanstack-jotai/config/build/development.ts +7 -0
- package/templates/template-react-tanstack-jotai/config/build/production.ts +1 -0
- package/templates/template-react-tanstack-jotai/config/build/test.ts +1 -0
- package/templates/template-react-tanstack-jotai/config/uno/rules.ts +127 -0
- package/templates/template-react-tanstack-jotai/env/.env +0 -0
- package/templates/template-react-tanstack-jotai/env/.env.development +2 -0
- package/templates/template-react-tanstack-jotai/env/.env.production +1 -0
- package/templates/template-react-tanstack-jotai/eslint.config.mjs +44 -0
- package/templates/template-react-tanstack-jotai/index.html +13 -0
- package/templates/template-react-tanstack-jotai/package.json +52 -0
- package/templates/template-react-tanstack-jotai/prettier.config.mjs +11 -0
- package/templates/template-react-tanstack-jotai/public/lic.svg +1263 -0
- package/templates/template-react-tanstack-jotai/public/react.svg +1 -0
- package/templates/template-react-tanstack-jotai/public/vite.svg +1 -0
- package/templates/template-react-tanstack-jotai/src/assets/react.svg +1 -0
- package/templates/template-react-tanstack-jotai/src/components/Lic/index.tsx +12 -0
- package/templates/template-react-tanstack-jotai/src/libs/gsap/index.ts +6 -0
- package/templates/template-react-tanstack-jotai/src/main.tsx +23 -0
- package/templates/template-react-tanstack-jotai/src/routeTree.gen.ts +145 -0
- package/templates/template-react-tanstack-jotai/src/routes/__root.tsx +11 -0
- package/templates/template-react-tanstack-jotai/src/routes/_layout/about.tsx +6 -0
- package/templates/template-react-tanstack-jotai/src/routes/_layout/index.tsx +6 -0
- package/templates/template-react-tanstack-jotai/src/routes/_layout.tsx +23 -0
- package/templates/template-react-tanstack-jotai/src/store/index.ts +1 -0
- package/templates/template-react-tanstack-jotai/src/store/module/favorite.ts +5 -0
- package/templates/template-react-tanstack-jotai/src/styles/animation.css +8 -0
- package/templates/template-react-tanstack-jotai/src/styles/variable.css +21 -0
- package/templates/template-react-tanstack-jotai/src/types/auto-imports.d.ts +33 -0
- package/templates/template-react-tanstack-jotai/src/types/color.d.ts +1 -0
- package/templates/template-react-tanstack-jotai/src/utils/rainbow-print.ts +10 -0
- package/templates/template-react-tanstack-jotai/src/views/404/index.tsx +18 -0
- package/templates/template-react-tanstack-jotai/src/views/About/index.tsx +7 -0
- package/templates/template-react-tanstack-jotai/src/views/Index/Button/index.tsx +24 -0
- package/templates/template-react-tanstack-jotai/src/views/Index/React/index.tsx +18 -0
- package/templates/template-react-tanstack-jotai/src/views/Index/Vite/index.tsx +20 -0
- package/templates/template-react-tanstack-jotai/src/views/Index/index.tsx +50 -0
- package/templates/template-react-tanstack-jotai/tsconfig.app.json +36 -0
- package/templates/template-react-tanstack-jotai/tsconfig.json +7 -0
- package/templates/template-react-tanstack-jotai/tsconfig.node.json +24 -0
- package/templates/template-react-tanstack-jotai/types/vite-env.d.ts +10 -0
- package/templates/template-react-tanstack-jotai/uno.config.ts +40 -0
- package/templates/template-react-tanstack-jotai/vite.config.ts +15 -0
- package/templates/template-vue/_gitignore +3 -0
- package/templates/template-vue/config/build/_base.ts +42 -0
- package/templates/template-vue/config/build/development.ts +7 -0
- package/templates/template-vue/config/build/production.ts +1 -0
- package/templates/template-vue/config/build/test.ts +1 -0
- package/templates/template-vue/plugins/index.ts +0 -28
- package/templates/template-vue/src/types/components.d.ts +21 -0
- package/templates/template-vue/tsconfig.node.json +1 -1
- package/templates/template-vue/vite.config.ts +13 -14
- package/templates/template-react/src/store/module/counter.ts +0 -20
- package/templates/template-vue/types/components.d.ts +0 -21
- /package/templates/{template-react/src/styles/mian.css → template-react-tanstack-jotai/src/styles/main.css} +0 -0
- /package/templates/template-vue/{types → src/types}/auto-imports.d.ts +0 -0
@@ -0,0 +1,52 @@
|
|
1
|
+
{
|
2
|
+
"name": "new-lic-blog",
|
3
|
+
"private": true,
|
4
|
+
"version": "0.0.0",
|
5
|
+
"type": "module",
|
6
|
+
"scripts": {
|
7
|
+
"dev": "vite",
|
8
|
+
"dev:test": "vite --mode test",
|
9
|
+
"build": "tsc -b && vite build",
|
10
|
+
"preview": "vite preview",
|
11
|
+
"lint": "eslint .",
|
12
|
+
"preinstall": "npx only-allow pnpm",
|
13
|
+
"prepare": "husky"
|
14
|
+
},
|
15
|
+
"dependencies": {
|
16
|
+
"@gsap/react": "^2.1.1",
|
17
|
+
"@tanstack/react-router": "^1.92.3",
|
18
|
+
"@unocss/reset": "^0.64.1",
|
19
|
+
"gsap": "^3.12.5",
|
20
|
+
"jotai": "^2.11.0",
|
21
|
+
"rainbow-print": "0.0.1-alpha.2",
|
22
|
+
"react": "^18.3.1",
|
23
|
+
"react-dom": "^18.3.1"
|
24
|
+
},
|
25
|
+
"devDependencies": {
|
26
|
+
"@babel/plugin-proposal-decorators": "^7.25.9",
|
27
|
+
"@commitlint/cli": "^19.6.0",
|
28
|
+
"@commitlint/config-conventional": "^19.6.0",
|
29
|
+
"@eslint/js": "^9.13.0",
|
30
|
+
"@tanstack/router-devtools": "^1.92.3",
|
31
|
+
"@tanstack/router-plugin": "^1.91.1",
|
32
|
+
"@types/node": "^22.9.1",
|
33
|
+
"@types/react": "^18.3.12",
|
34
|
+
"@types/react-dom": "^18.3.1",
|
35
|
+
"@typescript-eslint/eslint-plugin": "^8.15.0",
|
36
|
+
"@vitejs/plugin-react": "^4.3.3",
|
37
|
+
"eslint": "^9.14.0",
|
38
|
+
"eslint-config-prettier": "^9.1.0",
|
39
|
+
"eslint-plugin-prettier": "^5.2.1",
|
40
|
+
"eslint-plugin-react-hooks": "^5.0.0",
|
41
|
+
"eslint-plugin-react-refresh": "^0.4.14",
|
42
|
+
"globals": "^15.11.0",
|
43
|
+
"husky": "^9.1.7",
|
44
|
+
"lint-staged": "^15.2.10",
|
45
|
+
"only-allow": "^1.2.1",
|
46
|
+
"typescript": "~5.6.2",
|
47
|
+
"typescript-eslint": "^8.13.0",
|
48
|
+
"unocss": "^0.64.0",
|
49
|
+
"unplugin-auto-import": "^0.18.6",
|
50
|
+
"vite": "^5.4.10"
|
51
|
+
}
|
52
|
+
}
|