create-tauri-ui 0.2.0 → 0.2.1
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/README.md +5 -3
- package/dist/index.mjs +3 -3
- package/package.json +54 -54
- package/templates/.shared/src-tauri/Cargo.lock +3701 -3701
- package/templates/.shared/src-tauri/Cargo.toml +36 -36
- package/templates/.shared/src-tauri/tauri.conf.json +79 -79
- package/templates/next/components.json +15 -15
- package/templates/next/next.config.js +14 -14
- package/templates/next/package.json +83 -83
- package/templates/next/src/app/layout.tsx +47 -47
- package/templates/next/src/components/menu.tsx +259 -259
- package/templates/next/src/lib/utils.ts +6 -6
- package/templates/next/src/styles/globals.css +85 -85
- package/templates/next/src-tauri/Cargo.lock +3701 -3701
- package/templates/next/src-tauri/Cargo.toml +36 -36
- package/templates/next/src-tauri/tauri.conf.json +79 -79
- package/templates/next/tailwind.config.js +77 -77
- package/templates/next/tsconfig.json +34 -34
- package/templates/sveltekit/package.json +84 -84
- package/templates/sveltekit/src-tauri/Cargo.lock +3701 -3701
- package/templates/sveltekit/src-tauri/Cargo.toml +36 -36
- package/templates/sveltekit/src-tauri/tauri.conf.json +79 -79
- package/templates/vite/components.json +15 -15
- package/templates/vite/package.json +76 -76
- package/templates/vite/pnpm-lock.yaml +5110 -5110
- package/templates/vite/src-tauri/Cargo.lock +3701 -3701
- package/templates/vite/src-tauri/Cargo.toml +36 -36
- package/templates/vite/src-tauri/tauri.conf.json +79 -79
- package/templates/viteuno/components.json +15 -15
- package/templates/viteuno/package.json +73 -73
- package/templates/viteuno/pnpm-lock.yaml +5298 -5298
- package/templates/viteuno/preset.shadcn.ts +160 -160
- package/templates/viteuno/src-tauri/Cargo.lock +3701 -3701
- package/templates/viteuno/src-tauri/Cargo.toml +36 -36
- package/templates/viteuno/src-tauri/tauri.conf.json +79 -79
- package/templates/viteuno/uno.config.ts +111 -111
|
@@ -1,36 +1,36 @@
|
|
|
1
|
-
[package]
|
|
2
|
-
name = "tauri-ui"
|
|
3
|
-
version = "0.1.0"
|
|
4
|
-
description = "A Tauri App"
|
|
5
|
-
authors = ["you"]
|
|
6
|
-
license = "MIT"
|
|
7
|
-
repository = ""
|
|
8
|
-
edition = "2021"
|
|
9
|
-
|
|
10
|
-
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
11
|
-
|
|
12
|
-
[build-dependencies]
|
|
13
|
-
tauri-build = { version = "2.0.0-alpha.6", features = [] }
|
|
14
|
-
|
|
15
|
-
[dependencies]
|
|
16
|
-
tauri = { version = "2.0.0-alpha.10", features = [] }
|
|
17
|
-
tauri-plugin-window = "2.0.0-alpha"
|
|
18
|
-
serde = { version = "1.0", features = ["derive"] }
|
|
19
|
-
serde_json = "1.0"
|
|
20
|
-
|
|
21
|
-
[features]
|
|
22
|
-
# by default Tauri runs in production mode
|
|
23
|
-
# when `tauri dev` runs it is executed with `cargo run --no-default-features` if `devPath` is an URL
|
|
24
|
-
default = ["custom-protocol"]
|
|
25
|
-
# this feature is used used for production builds where `devPath` points to the filesystem
|
|
26
|
-
# DO NOT remove this
|
|
27
|
-
custom-protocol = ["tauri/custom-protocol"]
|
|
28
|
-
|
|
29
|
-
# Optimized for bundle size. If you want faster builds comment out/delete this section.
|
|
30
|
-
[profile.release]
|
|
31
|
-
lto = true # Enable Link Time Optimization
|
|
32
|
-
opt-level = "z" # Optimize for size.
|
|
33
|
-
codegen-units = 1 # Reduce number of codegen units to increase optimizations.
|
|
34
|
-
panic = "abort" # Abort on panic
|
|
35
|
-
strip = true # Automatically strip symbols from the binary.
|
|
36
|
-
debug = false
|
|
1
|
+
[package]
|
|
2
|
+
name = "tauri-ui"
|
|
3
|
+
version = "0.1.0"
|
|
4
|
+
description = "A Tauri App"
|
|
5
|
+
authors = ["you"]
|
|
6
|
+
license = "MIT"
|
|
7
|
+
repository = ""
|
|
8
|
+
edition = "2021"
|
|
9
|
+
|
|
10
|
+
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
11
|
+
|
|
12
|
+
[build-dependencies]
|
|
13
|
+
tauri-build = { version = "2.0.0-alpha.6", features = [] }
|
|
14
|
+
|
|
15
|
+
[dependencies]
|
|
16
|
+
tauri = { version = "2.0.0-alpha.10", features = [] }
|
|
17
|
+
tauri-plugin-window = "2.0.0-alpha"
|
|
18
|
+
serde = { version = "1.0", features = ["derive"] }
|
|
19
|
+
serde_json = "1.0"
|
|
20
|
+
|
|
21
|
+
[features]
|
|
22
|
+
# by default Tauri runs in production mode
|
|
23
|
+
# when `tauri dev` runs it is executed with `cargo run --no-default-features` if `devPath` is an URL
|
|
24
|
+
default = ["custom-protocol"]
|
|
25
|
+
# this feature is used used for production builds where `devPath` points to the filesystem
|
|
26
|
+
# DO NOT remove this
|
|
27
|
+
custom-protocol = ["tauri/custom-protocol"]
|
|
28
|
+
|
|
29
|
+
# Optimized for bundle size. If you want faster builds comment out/delete this section.
|
|
30
|
+
[profile.release]
|
|
31
|
+
lto = true # Enable Link Time Optimization
|
|
32
|
+
opt-level = "z" # Optimize for size.
|
|
33
|
+
codegen-units = 1 # Reduce number of codegen units to increase optimizations.
|
|
34
|
+
panic = "abort" # Abort on panic
|
|
35
|
+
strip = true # Automatically strip symbols from the binary.
|
|
36
|
+
debug = false
|
|
@@ -1,79 +1,79 @@
|
|
|
1
|
-
{
|
|
2
|
-
"build": {
|
|
3
|
-
"beforeDevCommand": "pnpm dev",
|
|
4
|
-
"beforeBuildCommand": "pnpm build",
|
|
5
|
-
"devPath": "http://localhost:1420",
|
|
6
|
-
"distDir": "../dist",
|
|
7
|
-
"withGlobalTauri": false
|
|
8
|
-
},
|
|
9
|
-
"package": {
|
|
10
|
-
"productName": "tauri-ui"
|
|
11
|
-
},
|
|
12
|
-
"tauri": {
|
|
13
|
-
"bundle": {
|
|
14
|
-
"active": true,
|
|
15
|
-
"category": "DeveloperTool",
|
|
16
|
-
"copyright": "",
|
|
17
|
-
"deb": {
|
|
18
|
-
"depends": []
|
|
19
|
-
},
|
|
20
|
-
"externalBin": [],
|
|
21
|
-
"icon": [
|
|
22
|
-
"icons/32x32.png",
|
|
23
|
-
"icons/128x128.png",
|
|
24
|
-
"icons/128x128@2x.png",
|
|
25
|
-
"icons/icon.icns",
|
|
26
|
-
"icons/icon.ico"
|
|
27
|
-
],
|
|
28
|
-
"identifier": "com.yourname.dev",
|
|
29
|
-
"longDescription": "",
|
|
30
|
-
"macOS": {
|
|
31
|
-
"entitlements": null,
|
|
32
|
-
"exceptionDomain": "",
|
|
33
|
-
"frameworks": [],
|
|
34
|
-
"providerShortName": null,
|
|
35
|
-
"signingIdentity": null
|
|
36
|
-
},
|
|
37
|
-
"resources": [],
|
|
38
|
-
"shortDescription": "",
|
|
39
|
-
"targets": "all",
|
|
40
|
-
"windows": {
|
|
41
|
-
"certificateThumbprint": null,
|
|
42
|
-
"digestAlgorithm": "sha256",
|
|
43
|
-
"timestampUrl": "",
|
|
44
|
-
"nsis": { "installerIcon": "./icons/icon.ico" }
|
|
45
|
-
}
|
|
46
|
-
},
|
|
47
|
-
"security": {
|
|
48
|
-
"csp": null,
|
|
49
|
-
"dangerousRemoteDomainIpcAccess": [
|
|
50
|
-
{
|
|
51
|
-
"scheme": "https",
|
|
52
|
-
"domain": "tauri.localhost",
|
|
53
|
-
"windows": ["main"],
|
|
54
|
-
"plugins": [
|
|
55
|
-
"clipboard",
|
|
56
|
-
"path",
|
|
57
|
-
"dialog",
|
|
58
|
-
"fs",
|
|
59
|
-
"shell",
|
|
60
|
-
"window",
|
|
61
|
-
"windows"
|
|
62
|
-
]
|
|
63
|
-
}
|
|
64
|
-
]
|
|
65
|
-
},
|
|
66
|
-
"windows": [
|
|
67
|
-
{
|
|
68
|
-
"fullscreen": false,
|
|
69
|
-
"title": "Tauri UI",
|
|
70
|
-
"center": true,
|
|
71
|
-
"resizable": true,
|
|
72
|
-
"decorations": false,
|
|
73
|
-
"transparent": true,
|
|
74
|
-
"height": 920,
|
|
75
|
-
"width": 1300
|
|
76
|
-
}
|
|
77
|
-
]
|
|
78
|
-
}
|
|
79
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"build": {
|
|
3
|
+
"beforeDevCommand": "pnpm dev",
|
|
4
|
+
"beforeBuildCommand": "pnpm build",
|
|
5
|
+
"devPath": "http://localhost:1420",
|
|
6
|
+
"distDir": "../dist",
|
|
7
|
+
"withGlobalTauri": false
|
|
8
|
+
},
|
|
9
|
+
"package": {
|
|
10
|
+
"productName": "tauri-ui"
|
|
11
|
+
},
|
|
12
|
+
"tauri": {
|
|
13
|
+
"bundle": {
|
|
14
|
+
"active": true,
|
|
15
|
+
"category": "DeveloperTool",
|
|
16
|
+
"copyright": "",
|
|
17
|
+
"deb": {
|
|
18
|
+
"depends": []
|
|
19
|
+
},
|
|
20
|
+
"externalBin": [],
|
|
21
|
+
"icon": [
|
|
22
|
+
"icons/32x32.png",
|
|
23
|
+
"icons/128x128.png",
|
|
24
|
+
"icons/128x128@2x.png",
|
|
25
|
+
"icons/icon.icns",
|
|
26
|
+
"icons/icon.ico"
|
|
27
|
+
],
|
|
28
|
+
"identifier": "com.yourname.dev",
|
|
29
|
+
"longDescription": "",
|
|
30
|
+
"macOS": {
|
|
31
|
+
"entitlements": null,
|
|
32
|
+
"exceptionDomain": "",
|
|
33
|
+
"frameworks": [],
|
|
34
|
+
"providerShortName": null,
|
|
35
|
+
"signingIdentity": null
|
|
36
|
+
},
|
|
37
|
+
"resources": [],
|
|
38
|
+
"shortDescription": "",
|
|
39
|
+
"targets": "all",
|
|
40
|
+
"windows": {
|
|
41
|
+
"certificateThumbprint": null,
|
|
42
|
+
"digestAlgorithm": "sha256",
|
|
43
|
+
"timestampUrl": "",
|
|
44
|
+
"nsis": { "installerIcon": "./icons/icon.ico" }
|
|
45
|
+
}
|
|
46
|
+
},
|
|
47
|
+
"security": {
|
|
48
|
+
"csp": null,
|
|
49
|
+
"dangerousRemoteDomainIpcAccess": [
|
|
50
|
+
{
|
|
51
|
+
"scheme": "https",
|
|
52
|
+
"domain": "tauri.localhost",
|
|
53
|
+
"windows": ["main"],
|
|
54
|
+
"plugins": [
|
|
55
|
+
"clipboard",
|
|
56
|
+
"path",
|
|
57
|
+
"dialog",
|
|
58
|
+
"fs",
|
|
59
|
+
"shell",
|
|
60
|
+
"window",
|
|
61
|
+
"windows"
|
|
62
|
+
]
|
|
63
|
+
}
|
|
64
|
+
]
|
|
65
|
+
},
|
|
66
|
+
"windows": [
|
|
67
|
+
{
|
|
68
|
+
"fullscreen": false,
|
|
69
|
+
"title": "Tauri UI",
|
|
70
|
+
"center": true,
|
|
71
|
+
"resizable": true,
|
|
72
|
+
"decorations": false,
|
|
73
|
+
"transparent": true,
|
|
74
|
+
"height": 920,
|
|
75
|
+
"width": 1300
|
|
76
|
+
}
|
|
77
|
+
]
|
|
78
|
+
}
|
|
79
|
+
}
|
|
@@ -1,78 +1,78 @@
|
|
|
1
|
-
/** @type {import('tailwindcss').Config} */
|
|
2
|
-
module.exports = {
|
|
3
|
-
darkMode: ["class"],
|
|
4
|
-
content: ["src/**/*.{js,jsx,ts,tsx}"],
|
|
5
|
-
theme: {
|
|
6
|
-
container: {
|
|
7
|
-
center: true,
|
|
8
|
-
padding: "2rem",
|
|
9
|
-
screens: {
|
|
10
|
-
"2xl": "1400px",
|
|
11
|
-
},
|
|
12
|
-
},
|
|
13
|
-
extend: {
|
|
14
|
-
colors: {
|
|
15
|
-
border: "hsl(var(--border))",
|
|
16
|
-
input: "hsl(var(--input))",
|
|
17
|
-
ring: "hsl(var(--ring))",
|
|
18
|
-
background: "hsl(var(--background))",
|
|
19
|
-
foreground: "hsl(var(--foreground))",
|
|
20
|
-
primary: {
|
|
21
|
-
DEFAULT: "hsl(var(--primary))",
|
|
22
|
-
foreground: "hsl(var(--primary-foreground))",
|
|
23
|
-
},
|
|
24
|
-
secondary: {
|
|
25
|
-
DEFAULT: "hsl(var(--secondary))",
|
|
26
|
-
foreground: "hsl(var(--secondary-foreground))",
|
|
27
|
-
},
|
|
28
|
-
destructive: {
|
|
29
|
-
DEFAULT: "hsl(var(--destructive))",
|
|
30
|
-
foreground: "hsl(var(--destructive-foreground))",
|
|
31
|
-
},
|
|
32
|
-
muted: {
|
|
33
|
-
DEFAULT: "hsl(var(--muted))",
|
|
34
|
-
foreground: "hsl(var(--muted-foreground))",
|
|
35
|
-
},
|
|
36
|
-
accent: {
|
|
37
|
-
DEFAULT: "hsl(var(--accent))",
|
|
38
|
-
foreground: "hsl(var(--accent-foreground))",
|
|
39
|
-
},
|
|
40
|
-
popover: {
|
|
41
|
-
DEFAULT: "hsl(var(--popover))",
|
|
42
|
-
foreground: "hsl(var(--popover-foreground))",
|
|
43
|
-
},
|
|
44
|
-
card: {
|
|
45
|
-
DEFAULT: "hsl(var(--card))",
|
|
46
|
-
foreground: "hsl(var(--card-foreground))",
|
|
47
|
-
},
|
|
48
|
-
},
|
|
49
|
-
borderRadius: {
|
|
50
|
-
lg: `var(--radius)`,
|
|
51
|
-
md: `calc(var(--radius) - 2px)`,
|
|
52
|
-
sm: "calc(var(--radius) - 4px)",
|
|
53
|
-
},
|
|
54
|
-
fontFamily: {
|
|
55
|
-
sans: ["Inter"],
|
|
56
|
-
// sans: ["var(--font-sans)", ...fontFamily.sans],
|
|
57
|
-
},
|
|
58
|
-
keyframes: {
|
|
59
|
-
"accordion-down": {
|
|
60
|
-
from: { height: 0 },
|
|
61
|
-
to: { height: "var(--radix-accordion-content-height)" },
|
|
62
|
-
},
|
|
63
|
-
"accordion-up": {
|
|
64
|
-
from: { height: "var(--radix-accordion-content-height)" },
|
|
65
|
-
to: { height: 0 },
|
|
66
|
-
},
|
|
67
|
-
},
|
|
68
|
-
animation: {
|
|
69
|
-
"accordion-down": "accordion-down 0.2s ease-out",
|
|
70
|
-
"accordion-up": "accordion-up 0.2s ease-out",
|
|
71
|
-
},
|
|
72
|
-
},
|
|
73
|
-
},
|
|
74
|
-
plugins: [
|
|
75
|
-
require("tailwindcss-animate"),
|
|
76
|
-
require("tailwind-scrollbar")({ nocompatible: true }),
|
|
77
|
-
],
|
|
1
|
+
/** @type {import('tailwindcss').Config} */
|
|
2
|
+
module.exports = {
|
|
3
|
+
darkMode: ["class"],
|
|
4
|
+
content: ["src/**/*.{js,jsx,ts,tsx}"],
|
|
5
|
+
theme: {
|
|
6
|
+
container: {
|
|
7
|
+
center: true,
|
|
8
|
+
padding: "2rem",
|
|
9
|
+
screens: {
|
|
10
|
+
"2xl": "1400px",
|
|
11
|
+
},
|
|
12
|
+
},
|
|
13
|
+
extend: {
|
|
14
|
+
colors: {
|
|
15
|
+
border: "hsl(var(--border))",
|
|
16
|
+
input: "hsl(var(--input))",
|
|
17
|
+
ring: "hsl(var(--ring))",
|
|
18
|
+
background: "hsl(var(--background))",
|
|
19
|
+
foreground: "hsl(var(--foreground))",
|
|
20
|
+
primary: {
|
|
21
|
+
DEFAULT: "hsl(var(--primary))",
|
|
22
|
+
foreground: "hsl(var(--primary-foreground))",
|
|
23
|
+
},
|
|
24
|
+
secondary: {
|
|
25
|
+
DEFAULT: "hsl(var(--secondary))",
|
|
26
|
+
foreground: "hsl(var(--secondary-foreground))",
|
|
27
|
+
},
|
|
28
|
+
destructive: {
|
|
29
|
+
DEFAULT: "hsl(var(--destructive))",
|
|
30
|
+
foreground: "hsl(var(--destructive-foreground))",
|
|
31
|
+
},
|
|
32
|
+
muted: {
|
|
33
|
+
DEFAULT: "hsl(var(--muted))",
|
|
34
|
+
foreground: "hsl(var(--muted-foreground))",
|
|
35
|
+
},
|
|
36
|
+
accent: {
|
|
37
|
+
DEFAULT: "hsl(var(--accent))",
|
|
38
|
+
foreground: "hsl(var(--accent-foreground))",
|
|
39
|
+
},
|
|
40
|
+
popover: {
|
|
41
|
+
DEFAULT: "hsl(var(--popover))",
|
|
42
|
+
foreground: "hsl(var(--popover-foreground))",
|
|
43
|
+
},
|
|
44
|
+
card: {
|
|
45
|
+
DEFAULT: "hsl(var(--card))",
|
|
46
|
+
foreground: "hsl(var(--card-foreground))",
|
|
47
|
+
},
|
|
48
|
+
},
|
|
49
|
+
borderRadius: {
|
|
50
|
+
lg: `var(--radius)`,
|
|
51
|
+
md: `calc(var(--radius) - 2px)`,
|
|
52
|
+
sm: "calc(var(--radius) - 4px)",
|
|
53
|
+
},
|
|
54
|
+
fontFamily: {
|
|
55
|
+
sans: ["Inter"],
|
|
56
|
+
// sans: ["var(--font-sans)", ...fontFamily.sans],
|
|
57
|
+
},
|
|
58
|
+
keyframes: {
|
|
59
|
+
"accordion-down": {
|
|
60
|
+
from: { height: 0 },
|
|
61
|
+
to: { height: "var(--radix-accordion-content-height)" },
|
|
62
|
+
},
|
|
63
|
+
"accordion-up": {
|
|
64
|
+
from: { height: "var(--radix-accordion-content-height)" },
|
|
65
|
+
to: { height: 0 },
|
|
66
|
+
},
|
|
67
|
+
},
|
|
68
|
+
animation: {
|
|
69
|
+
"accordion-down": "accordion-down 0.2s ease-out",
|
|
70
|
+
"accordion-up": "accordion-up 0.2s ease-out",
|
|
71
|
+
},
|
|
72
|
+
},
|
|
73
|
+
},
|
|
74
|
+
plugins: [
|
|
75
|
+
require("tailwindcss-animate"),
|
|
76
|
+
require("tailwind-scrollbar")({ nocompatible: true }),
|
|
77
|
+
],
|
|
78
78
|
}
|
|
@@ -1,35 +1,35 @@
|
|
|
1
|
-
{
|
|
2
|
-
"compilerOptions": {
|
|
3
|
-
"lib": ["dom", "dom.iterable", "esnext"],
|
|
4
|
-
"allowJs": true,
|
|
5
|
-
"skipLibCheck": true,
|
|
6
|
-
"strict": true,
|
|
7
|
-
"forceConsistentCasingInFileNames": true,
|
|
8
|
-
"noEmit": true,
|
|
9
|
-
"incremental": true,
|
|
10
|
-
"esModuleInterop": true,
|
|
11
|
-
"module": "esnext",
|
|
12
|
-
"moduleResolution": "node",
|
|
13
|
-
"resolveJsonModule": true,
|
|
14
|
-
"isolatedModules": true,
|
|
15
|
-
"jsx": "preserve",
|
|
16
|
-
"baseUrl": ".",
|
|
17
|
-
"paths": {
|
|
18
|
-
"@/*": ["src/*"]
|
|
19
|
-
},
|
|
20
|
-
"plugins": [
|
|
21
|
-
{
|
|
22
|
-
"name": "next"
|
|
23
|
-
}
|
|
24
|
-
],
|
|
25
|
-
"strictNullChecks": true
|
|
26
|
-
},
|
|
27
|
-
"include": [
|
|
28
|
-
"next-env.d.ts",
|
|
29
|
-
"**/*.ts",
|
|
30
|
-
"**/*.tsx",
|
|
31
|
-
".next/types/**/*.ts",
|
|
32
|
-
"dist/types/**/*.ts"
|
|
33
|
-
],
|
|
34
|
-
"exclude": ["node_modules", "src-tauri", "dist", ".next"]
|
|
1
|
+
{
|
|
2
|
+
"compilerOptions": {
|
|
3
|
+
"lib": ["dom", "dom.iterable", "esnext"],
|
|
4
|
+
"allowJs": true,
|
|
5
|
+
"skipLibCheck": true,
|
|
6
|
+
"strict": true,
|
|
7
|
+
"forceConsistentCasingInFileNames": true,
|
|
8
|
+
"noEmit": true,
|
|
9
|
+
"incremental": true,
|
|
10
|
+
"esModuleInterop": true,
|
|
11
|
+
"module": "esnext",
|
|
12
|
+
"moduleResolution": "node",
|
|
13
|
+
"resolveJsonModule": true,
|
|
14
|
+
"isolatedModules": true,
|
|
15
|
+
"jsx": "preserve",
|
|
16
|
+
"baseUrl": ".",
|
|
17
|
+
"paths": {
|
|
18
|
+
"@/*": ["src/*"]
|
|
19
|
+
},
|
|
20
|
+
"plugins": [
|
|
21
|
+
{
|
|
22
|
+
"name": "next"
|
|
23
|
+
}
|
|
24
|
+
],
|
|
25
|
+
"strictNullChecks": true
|
|
26
|
+
},
|
|
27
|
+
"include": [
|
|
28
|
+
"next-env.d.ts",
|
|
29
|
+
"**/*.ts",
|
|
30
|
+
"**/*.tsx",
|
|
31
|
+
".next/types/**/*.ts",
|
|
32
|
+
"dist/types/**/*.ts"
|
|
33
|
+
],
|
|
34
|
+
"exclude": ["node_modules", "src-tauri", "dist", ".next"]
|
|
35
35
|
}
|
|
@@ -1,84 +1,84 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "tauri-ui-svelte",
|
|
3
|
-
"version": "0.1.0",
|
|
4
|
-
"private": true,
|
|
5
|
-
"author": {
|
|
6
|
-
"name": "huntabyte",
|
|
7
|
-
"url": "https://twitter.com/huntabyte"
|
|
8
|
-
},
|
|
9
|
-
"repository": {
|
|
10
|
-
"type": "git",
|
|
11
|
-
"url": "https://github.com/huntabyte/shadcn-svelte.git",
|
|
12
|
-
"directory": "apps/www"
|
|
13
|
-
},
|
|
14
|
-
"type": "module",
|
|
15
|
-
"scripts": {
|
|
16
|
-
"dev": "vite dev",
|
|
17
|
-
"build": "vite build",
|
|
18
|
-
"preview": "vite preview",
|
|
19
|
-
"check": "svelte-kit sync && svelte-check --tsconfig ./jsconfig.json",
|
|
20
|
-
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./jsconfig.json --watch",
|
|
21
|
-
"lint": "prettier --plugin-search-dir . --check .",
|
|
22
|
-
"format": "prettier --plugin-search-dir . --write . --ignore-path .gitignore",
|
|
23
|
-
"taze": "taze major -I",
|
|
24
|
-
"taze:minor": "taze minor -w"
|
|
25
|
-
},
|
|
26
|
-
"dependencies": {
|
|
27
|
-
"@tanstack/svelte-table": "^8.9.4",
|
|
28
|
-
"@tauri-apps/api": "2.0.0-alpha.5",
|
|
29
|
-
"@tauri-apps/plugin-window": "2.0.0-alpha.0",
|
|
30
|
-
"class-variance-authority": "^0.6.1",
|
|
31
|
-
"clsx": "^1.2.1",
|
|
32
|
-
"d3-scale": "^4.0.2",
|
|
33
|
-
"escape-html": "^1.0.3",
|
|
34
|
-
"esm-env": "^1.0.0",
|
|
35
|
-
"hast-util-to-html": "^8.0.4",
|
|
36
|
-
"lucide-svelte": "^0.259.0",
|
|
37
|
-
"mdast-util-to-string": "^4.0.0",
|
|
38
|
-
"radix-svelte": "^0.8.0",
|
|
39
|
-
"rehype-pretty-code": "^0.10.0",
|
|
40
|
-
"rehype-slug": "^5.1.0",
|
|
41
|
-
"rehype-stringify": "^9.0.3",
|
|
42
|
-
"remark-code-import": "^1.2.0",
|
|
43
|
-
"remark-gfm": "^3.0.1",
|
|
44
|
-
"shiki": "^0.14.3",
|
|
45
|
-
"svelte-legos": "^0.2.1",
|
|
46
|
-
"svelte-wrap-balancer": "^0.0.3",
|
|
47
|
-
"tailwind-merge": "^1.13.2",
|
|
48
|
-
"unified": "^10.1.2",
|
|
49
|
-
"unist-builder": "^4.0.0",
|
|
50
|
-
"unist-util-visit": "^5.0.0"
|
|
51
|
-
},
|
|
52
|
-
"devDependencies": {
|
|
53
|
-
"@sveltejs/adapter-auto": "^2.1.0",
|
|
54
|
-
"@sveltejs/adapter-static": "2.0.2",
|
|
55
|
-
"@sveltejs/kit": "^1.22.1",
|
|
56
|
-
"@tauri-apps/cli": "2.0.0-alpha.10",
|
|
57
|
-
"@types/d3-scale": "^4.0.3",
|
|
58
|
-
"@types/escape-html": "^1.0.2",
|
|
59
|
-
"@types/node": "^20.4.1",
|
|
60
|
-
"@typescript-eslint/eslint-plugin": "^5.61.0",
|
|
61
|
-
"@typescript-eslint/parser": "^5.61.0",
|
|
62
|
-
"autoprefixer": "^10.4.14",
|
|
63
|
-
"eslint": "^8.44.0",
|
|
64
|
-
"eslint-config-prettier": "^8.8.0",
|
|
65
|
-
"eslint-plugin-svelte": "^2.32.2",
|
|
66
|
-
"mdsvex": "0.11.0",
|
|
67
|
-
"postcss": "^8.4.25",
|
|
68
|
-
"postcss-load-config": "^4.0.1",
|
|
69
|
-
"prettier": "^3.0.0",
|
|
70
|
-
"prettier-plugin-svelte": "^2.10.1",
|
|
71
|
-
"prettier-plugin-tailwindcss": "^0.3.0",
|
|
72
|
-
"svelte": "^4.0.5",
|
|
73
|
-
"svelte-check": "^3.4.5",
|
|
74
|
-
"svelte-preprocess": "^5.0.4",
|
|
75
|
-
"tailwind-scrollbar": "^3.0.4",
|
|
76
|
-
"tailwindcss": "^3.3.2",
|
|
77
|
-
"tailwindcss-animate": "^1.0.6",
|
|
78
|
-
"tslib": "^2.6.0",
|
|
79
|
-
"tsx": "^3.12.7",
|
|
80
|
-
"typescript": "^5.1.6",
|
|
81
|
-
"vite": "^4.4.2",
|
|
82
|
-
"vitest": "^0.33.0"
|
|
83
|
-
}
|
|
84
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "tauri-ui-svelte",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"private": true,
|
|
5
|
+
"author": {
|
|
6
|
+
"name": "huntabyte",
|
|
7
|
+
"url": "https://twitter.com/huntabyte"
|
|
8
|
+
},
|
|
9
|
+
"repository": {
|
|
10
|
+
"type": "git",
|
|
11
|
+
"url": "https://github.com/huntabyte/shadcn-svelte.git",
|
|
12
|
+
"directory": "apps/www"
|
|
13
|
+
},
|
|
14
|
+
"type": "module",
|
|
15
|
+
"scripts": {
|
|
16
|
+
"dev": "vite dev",
|
|
17
|
+
"build": "vite build",
|
|
18
|
+
"preview": "vite preview",
|
|
19
|
+
"check": "svelte-kit sync && svelte-check --tsconfig ./jsconfig.json",
|
|
20
|
+
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./jsconfig.json --watch",
|
|
21
|
+
"lint": "prettier --plugin-search-dir . --check .",
|
|
22
|
+
"format": "prettier --plugin-search-dir . --write . --ignore-path .gitignore",
|
|
23
|
+
"taze": "taze major -I",
|
|
24
|
+
"taze:minor": "taze minor -w"
|
|
25
|
+
},
|
|
26
|
+
"dependencies": {
|
|
27
|
+
"@tanstack/svelte-table": "^8.9.4",
|
|
28
|
+
"@tauri-apps/api": "2.0.0-alpha.5",
|
|
29
|
+
"@tauri-apps/plugin-window": "2.0.0-alpha.0",
|
|
30
|
+
"class-variance-authority": "^0.6.1",
|
|
31
|
+
"clsx": "^1.2.1",
|
|
32
|
+
"d3-scale": "^4.0.2",
|
|
33
|
+
"escape-html": "^1.0.3",
|
|
34
|
+
"esm-env": "^1.0.0",
|
|
35
|
+
"hast-util-to-html": "^8.0.4",
|
|
36
|
+
"lucide-svelte": "^0.259.0",
|
|
37
|
+
"mdast-util-to-string": "^4.0.0",
|
|
38
|
+
"radix-svelte": "^0.8.0",
|
|
39
|
+
"rehype-pretty-code": "^0.10.0",
|
|
40
|
+
"rehype-slug": "^5.1.0",
|
|
41
|
+
"rehype-stringify": "^9.0.3",
|
|
42
|
+
"remark-code-import": "^1.2.0",
|
|
43
|
+
"remark-gfm": "^3.0.1",
|
|
44
|
+
"shiki": "^0.14.3",
|
|
45
|
+
"svelte-legos": "^0.2.1",
|
|
46
|
+
"svelte-wrap-balancer": "^0.0.3",
|
|
47
|
+
"tailwind-merge": "^1.13.2",
|
|
48
|
+
"unified": "^10.1.2",
|
|
49
|
+
"unist-builder": "^4.0.0",
|
|
50
|
+
"unist-util-visit": "^5.0.0"
|
|
51
|
+
},
|
|
52
|
+
"devDependencies": {
|
|
53
|
+
"@sveltejs/adapter-auto": "^2.1.0",
|
|
54
|
+
"@sveltejs/adapter-static": "2.0.2",
|
|
55
|
+
"@sveltejs/kit": "^1.22.1",
|
|
56
|
+
"@tauri-apps/cli": "2.0.0-alpha.10",
|
|
57
|
+
"@types/d3-scale": "^4.0.3",
|
|
58
|
+
"@types/escape-html": "^1.0.2",
|
|
59
|
+
"@types/node": "^20.4.1",
|
|
60
|
+
"@typescript-eslint/eslint-plugin": "^5.61.0",
|
|
61
|
+
"@typescript-eslint/parser": "^5.61.0",
|
|
62
|
+
"autoprefixer": "^10.4.14",
|
|
63
|
+
"eslint": "^8.44.0",
|
|
64
|
+
"eslint-config-prettier": "^8.8.0",
|
|
65
|
+
"eslint-plugin-svelte": "^2.32.2",
|
|
66
|
+
"mdsvex": "0.11.0",
|
|
67
|
+
"postcss": "^8.4.25",
|
|
68
|
+
"postcss-load-config": "^4.0.1",
|
|
69
|
+
"prettier": "^3.0.0",
|
|
70
|
+
"prettier-plugin-svelte": "^2.10.1",
|
|
71
|
+
"prettier-plugin-tailwindcss": "^0.3.0",
|
|
72
|
+
"svelte": "^4.0.5",
|
|
73
|
+
"svelte-check": "^3.4.5",
|
|
74
|
+
"svelte-preprocess": "^5.0.4",
|
|
75
|
+
"tailwind-scrollbar": "^3.0.4",
|
|
76
|
+
"tailwindcss": "^3.3.2",
|
|
77
|
+
"tailwindcss-animate": "^1.0.6",
|
|
78
|
+
"tslib": "^2.6.0",
|
|
79
|
+
"tsx": "^3.12.7",
|
|
80
|
+
"typescript": "^5.1.6",
|
|
81
|
+
"vite": "^4.4.2",
|
|
82
|
+
"vitest": "^0.33.0"
|
|
83
|
+
}
|
|
84
|
+
}
|