Skip to content

Commit 3c5ad9a

Browse files
committed
chore: init
0 parents  commit 3c5ad9a

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

45 files changed

+8792
-0
lines changed

.editorconfig

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# editorconfig.org
2+
root = true
3+
4+
[*]
5+
indent_size = 2
6+
indent_style = space
7+
end_of_line = lf
8+
charset = utf-8
9+
trim_trailing_whitespace = true
10+
insert_final_newline = true
11+
12+
[*.md]
13+
trim_trailing_whitespace = false

.env.example

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Production license for @nuxt/ui-pro, get one at https://ui.nuxt.com/pro/purchase
2+
NUXT_UI_PRO_LICENSE=

.github/workflows/ci.yml

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
name: ci
2+
3+
on: push
4+
5+
jobs:
6+
ci:
7+
runs-on: ${{ matrix.os }}
8+
9+
strategy:
10+
matrix:
11+
os: [ubuntu-latest]
12+
node: [22]
13+
14+
steps:
15+
- name: Checkout
16+
uses: actions/checkout@v4
17+
18+
- name: Install pnpm
19+
uses: pnpm/action-setup@v4
20+
21+
- name: Install node
22+
uses: actions/setup-node@v4
23+
with:
24+
node-version: ${{ matrix.node }}
25+
cache: pnpm
26+
27+
- name: Install dependencies
28+
run: pnpm install
29+
30+
- name: Lint
31+
run: pnpm run lint
32+
33+
- name: Typecheck
34+
run: pnpm run typecheck

.gitignore

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
# Logs
2+
logs
3+
*.log
4+
npm-debug.log*
5+
yarn-debug.log*
6+
yarn-error.log*
7+
pnpm-debug.log*
8+
lerna-debug.log*
9+
10+
node_modules
11+
dist
12+
dist-ssr
13+
*.local
14+
15+
# Editor directories and files
16+
.vscode/*
17+
!.vscode/extensions.json
18+
.idea
19+
.DS_Store
20+
*.suo
21+
*.ntvs*
22+
*.njsproj
23+
*.sln
24+
*.sw?
25+
26+
# Auto-generated type declarations
27+
auto-imports.d.ts
28+
components.d.ts
29+
tsconfig.app.tsbuildinfo
30+
tsconfig.node.tsbuildinfo
31+
32+
# Environment variables
33+
.env

.npmrc

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
shamefully-hoist=true

README.md

+71
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,71 @@
1+
# Nuxt UI Pro - Vue Starter
2+
3+
## Setup
4+
5+
Make sure to install the dependencies:
6+
7+
```bash
8+
# npm
9+
npm install
10+
11+
# pnpm
12+
pnpm install
13+
14+
# yarn
15+
yarn install
16+
17+
# bun
18+
bun install
19+
```
20+
21+
## Development Server
22+
23+
Start the development server on `http://localhost:5173`:
24+
25+
```bash
26+
# npm
27+
npm run dev
28+
29+
# pnpm
30+
pnpm run dev
31+
32+
# yarn
33+
yarn dev
34+
35+
# bun
36+
bun run dev
37+
```
38+
39+
## Production
40+
41+
Build the application for production:
42+
43+
```bash
44+
# npm
45+
npm run build
46+
47+
# pnpm
48+
pnpm run build
49+
50+
# yarn
51+
yarn build
52+
53+
# bun
54+
bun run build
55+
```
56+
57+
Locally preview production build:
58+
59+
```bash
60+
# npm
61+
npm run preview
62+
63+
# pnpm
64+
pnpm run preview
65+
66+
# yarn
67+
yarn preview
68+
69+
# bun
70+
bun run preview
71+
```

eslint.config.js

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
import js from '@eslint/js'
2+
import eslintPluginVue from 'eslint-plugin-vue'
3+
import ts from 'typescript-eslint'
4+
5+
export default ts.config(
6+
js.configs.recommended,
7+
...ts.configs.recommended,
8+
...eslintPluginVue.configs['flat/recommended'],
9+
{
10+
files: ['*.vue', '**/*.vue'],
11+
languageOptions: {
12+
parserOptions: {
13+
parser: '@typescript-eslint/parser'
14+
}
15+
},
16+
rules: {
17+
'vue/multi-word-component-names': 'off',
18+
'vue/max-attributes-per-line': ['error', { singleline: 3 }],
19+
'no-undef': 'off'
20+
}
21+
}
22+
)

index.html

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<!doctype html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8" />
5+
<link rel="icon" type="image/svg+xml" href="/logo.svg" />
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7+
<title>Nuxt UI Pro - Vue Dashboard template</title>
8+
</head>
9+
<body>
10+
<div id="app" class="isolate"></div>
11+
<script type="module" src="/src/main.ts"></script>
12+
</body>
13+
</html>

package.json

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
{
2+
"name": "app-ui-pro3-vue",
3+
"private": true,
4+
"version": "0.0.0",
5+
"type": "module",
6+
"scripts": {
7+
"dev": "vite",
8+
"build": "vite build",
9+
"preview": "vite preview",
10+
"lint": "eslint --ext .js,.vue src",
11+
"typecheck": "vue-tsc -p ./tsconfig.app.json"
12+
},
13+
"dependencies": {
14+
"@unhead/vue": "^1.11.20",
15+
"@unovis/vue": "^1.5.1",
16+
"date-fns": "^4.1.0",
17+
"vue": "^3.5.13",
18+
"vue-router": "^4.5.0",
19+
"zod": "^3.24.2"
20+
},
21+
"devDependencies": {
22+
"@nuxt/ui-pro": "https://pkg.pr.new/@nuxt/ui-pro@83fa134",
23+
"@vitejs/plugin-vue": "^5.2.1",
24+
"eslint": "^9.21.0",
25+
"eslint-plugin-vue": "^9.32.0",
26+
"typescript": "^5.7.3",
27+
"typescript-eslint": "^8.25.0",
28+
"vite": "^6.2.0",
29+
"vue-tsc": "^2.2.4"
30+
},
31+
"resolutions": {
32+
"@nuxt/ui": "https://pkg.pr.new/@nuxt/ui@607d9a7"
33+
}
34+
}

0 commit comments

Comments
 (0)