Skip to content

Commit 98ba4a3

Browse files
committed
minor changes
0 parents  commit 98ba4a3

Some content is hidden

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

64 files changed

+8854
-0
lines changed

.eslintignore

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
.DS_Store
2+
node_modules
3+
/build
4+
/.svelte-kit
5+
/package
6+
.env
7+
.env.*
8+
!.env.example
9+
10+
# Ignore files for PNPM, NPM and YARN
11+
pnpm-lock.yaml
12+
package-lock.json
13+
yarn.lock

.eslintrc.cjs

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
/** @type { import("eslint").Linter.FlatConfig } */
2+
module.exports = {
3+
root: true,
4+
extends: [
5+
'eslint:recommended',
6+
'plugin:@typescript-eslint/recommended',
7+
'plugin:svelte/recommended',
8+
'prettier'
9+
],
10+
parser: '@typescript-eslint/parser',
11+
plugins: ['@typescript-eslint'],
12+
parserOptions: {
13+
sourceType: 'module',
14+
ecmaVersion: 2020,
15+
extraFileExtensions: ['.svelte']
16+
},
17+
env: {
18+
browser: true,
19+
es2017: true,
20+
node: true
21+
},
22+
overrides: [
23+
{
24+
files: ['*.svelte'],
25+
parser: 'svelte-eslint-parser',
26+
parserOptions: {
27+
parser: '@typescript-eslint/parser'
28+
}
29+
}
30+
]
31+
};

.gitignore

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
**/.DS_Store
2+
node_modules
3+
/build
4+
/.svelte-kit
5+
/package
6+
.env
7+
.env.*
8+
!.env.example
9+
.vercel
10+
.output
11+
vite.config.js.timestamp-*
12+
vite.config.ts.timestamp-*
13+
.vscode
14+

.npmrc

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
engine-strict=true

.prettierignore

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
.DS_Store
2+
node_modules
3+
/build
4+
/.svelte-kit
5+
/package
6+
.env
7+
.env.*
8+
!.env.example
9+
10+
# Ignore files for PNPM, NPM and YARN
11+
pnpm-lock.yaml
12+
package-lock.json
13+
yarn.lock

.prettierrc

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"useTabs": false,
3+
"singleQuote": true,
4+
"trailingComma": "all",
5+
"printWidth": 100,
6+
"plugins": ["prettier-plugin-svelte"],
7+
"overrides": [{ "files": "*.svelte", "options": { "parser": "svelte" } }]
8+
}

README.md

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# Database Manager
2+
3+
There are lots of database manager app around there but some of them are eats too much memory,
4+
some has high price, some can connect to only one database etc...
5+
I created a desktop app which doesn't have these kind of lacks.
6+
7+
### Tech Stack
8+
9+
In first, I <3 Rust. Rust is best language I have ever seen. I think if Rust invented
10+
before C/C++, no one would use C, Linux kernel would have been developed with Rust.
11+
I used Rust, Typescript, Tauri and Sveltekit in this project.
12+
13+
### Touch
14+
15+
You can connect to me from email:
16+
`[My Github Username]@gmail.com`

package.json

+49
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
{
2+
"name": "yt-desktop",
3+
"license": "UNLICENSED",
4+
"version": "0.0.1",
5+
"scripts": {
6+
"dev": "vite dev",
7+
"build": "vite build",
8+
"preview": "vite preview",
9+
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
10+
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
11+
"test": "vitest",
12+
"lint": "prettier --check . && eslint .",
13+
"format": "prettier --write ."
14+
},
15+
"devDependencies": {
16+
"@fontsource/fira-mono": "^4.5.10",
17+
"@fontsource/roboto-mono": "^5.0.15",
18+
"@neoconfetti/svelte": "^1.0.0",
19+
"@smui/button": "^7.0.0-beta.15",
20+
"@smui/list": "^7.0.0-beta.15",
21+
"@smui/menu": "^7.0.0-beta.15",
22+
"@smui/textfield": "^7.0.0-beta.15",
23+
"@sveltejs/adapter-auto": "^2.0.0",
24+
"@sveltejs/adapter-static": "^2.0.3",
25+
"@sveltejs/kit": "^1.27.4",
26+
"@types/cookie": "^0.5.1",
27+
"@typescript-eslint/eslint-plugin": "^6.0.0",
28+
"@typescript-eslint/parser": "^6.0.0",
29+
"bootstrap": "^5.3.2",
30+
"eslint": "^8.28.0",
31+
"eslint-config-prettier": "^9.0.0",
32+
"eslint-plugin-svelte": "^2.30.0",
33+
"material-icons": "^1.13.12",
34+
"prettier": "^3.0.0",
35+
"prettier-plugin-svelte": "^3.0.0",
36+
"svelte": "^4.2.7",
37+
"svelte-check": "^3.6.0",
38+
"svelte-material-ui": "^7.0.0-beta.15",
39+
"tslib": "^2.4.1",
40+
"typescript": "^5.0.0",
41+
"vite": "^4.4.2",
42+
"vitest": "^0.34.0"
43+
},
44+
"type": "module",
45+
"dependencies": {
46+
"@smui-extra/accordion": "^7.0.0-beta.15",
47+
"@tauri-apps/api": "^1.5.1"
48+
}
49+
}

src-tauri/.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Generated by Cargo
2+
# will have compiled files and executables
3+
/target/

0 commit comments

Comments
 (0)