Skip to content

Commit 9f407b2

Browse files
author
Austinb96
committed
0.0.10
1 parent f79b4f0 commit 9f407b2

File tree

4 files changed

+80
-79
lines changed

4 files changed

+80
-79
lines changed

package.json

+33-32
Original file line numberDiff line numberDiff line change
@@ -1,33 +1,34 @@
11
{
2-
"name": "fivem_dev_tools",
3-
"version": "0.0.9",
4-
"description": "",
5-
"type": "module",
6-
"scripts": {
7-
"dev": "vite dev",
8-
"build": "vite build",
9-
"preview": "vite preview",
10-
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
11-
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
12-
"tauri": "tauri"
13-
},
14-
"license": "MIT",
15-
"dependencies": {
16-
"@tauri-apps/api": "^2.2.0",
17-
"@tauri-apps/plugin-dialog": "~2",
18-
"@tauri-apps/plugin-opener": "^2",
19-
"@tauri-apps/plugin-process": "^2.2.0",
20-
"@tauri-apps/plugin-store": "~2",
21-
"@tauri-apps/plugin-updater": "~2.5.0"
22-
},
23-
"devDependencies": {
24-
"@sveltejs/adapter-static": "^3.0.6",
25-
"@sveltejs/kit": "^2.9.0",
26-
"@sveltejs/vite-plugin-svelte": "^5.0.0",
27-
"@tauri-apps/cli": "^2",
28-
"svelte": "^5.0.0",
29-
"svelte-check": "^4.0.0",
30-
"typescript": "~5.6.2",
31-
"vite": "^6.0.3"
32-
}
33-
}
2+
"name": "fivem_dev_tools",
3+
"version": "0.0.10",
4+
"description": "",
5+
"type": "module",
6+
"scripts": {
7+
"dev": "vite dev",
8+
"build": "vite build",
9+
"preview": "vite preview",
10+
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
11+
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
12+
"tauri": "tauri"
13+
},
14+
"license": "MIT",
15+
"dependencies": {
16+
"@tauri-apps/api": "^2.2.0",
17+
"@tauri-apps/plugin-dialog": "~2",
18+
"@tauri-apps/plugin-opener": "^2",
19+
"@tauri-apps/plugin-process": "^2.2.0",
20+
"@tauri-apps/plugin-store": "~2",
21+
"@tauri-apps/plugin-updater": "~2.5.0",
22+
"tauri-version": "1.0.0-beta.2"
23+
},
24+
"devDependencies": {
25+
"@sveltejs/adapter-static": "^3.0.6",
26+
"@sveltejs/kit": "^2.9.0",
27+
"@sveltejs/vite-plugin-svelte": "^5.0.0",
28+
"@tauri-apps/cli": "^2",
29+
"svelte": "^5.0.0",
30+
"svelte-check": "^4.0.0",
31+
"typescript": "~5.6.2",
32+
"vite": "^6.0.3"
33+
}
34+
}

src-tauri/Cargo.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src-tauri/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "fivem_dev_tools"
3-
version = "0.0.9"
3+
version = "0.0.10"
44
description = "Dev Tools for FiveM"
55
authors = ["Zero"]
66
edition = "2021"

src-tauri/tauri.conf.json

+45-45
Original file line numberDiff line numberDiff line change
@@ -1,47 +1,47 @@
11
{
2-
"$schema": "https://schema.tauri.app/config/2",
3-
"productName": "FiveM Dev Tools",
4-
"version": "0.0.9",
5-
"identifier": "com.fivemdevtools.app",
6-
"build": {
7-
"beforeDevCommand": "pnpm dev",
8-
"devUrl": "http://localhost:1420",
9-
"beforeBuildCommand": "pnpm build",
10-
"frontendDist": "../build"
11-
},
12-
"app": {
13-
"windows": [
14-
{
15-
"title": "fivem_dev_tools",
16-
"width": 800,
17-
"height": 600
18-
}
19-
],
20-
"security": {
21-
"csp": null
22-
}
23-
},
24-
"bundle": {
25-
"active": true,
26-
"targets": "all",
27-
"icon": [
28-
"icons/32x32.png",
29-
"icons/128x128.png",
30-
31-
"icons/icon.icns",
32-
"icons/icon.ico"
33-
],
34-
"createUpdaterArtifacts": true
35-
},
36-
"plugins":{
37-
"updater":{
38-
"pubkey": "dW50cnVzdGVkIGNvbW1lbnQ6IG1pbmlzaWduIHB1YmxpYyBrZXk6IEE1NEEyRkY1ODg0N0VBN0MKUldSODZrZUk5UzlLcGJ2YlhaTVNnREJRYmYxbXZoS2pqYjhzcDVDWkdCeGs0Q1JzSzdER2hvRE8K",
39-
"endpoints": [
40-
"https://github.com/Austinb96/fivem_dev_tools/releases/latest/download/latest.json"
41-
],
42-
"windows": {
43-
"installMode" : "passive"
44-
}
45-
}
2+
"$schema": "https://schema.tauri.app/config/2",
3+
"productName": "FiveM Dev Tools",
4+
"version": "0.0.10",
5+
"identifier": "com.fivemdevtools.app",
6+
"build": {
7+
"beforeDevCommand": "pnpm dev",
8+
"devUrl": "http://localhost:1420",
9+
"beforeBuildCommand": "pnpm build",
10+
"frontendDist": "../build"
11+
},
12+
"app": {
13+
"windows": [
14+
{
15+
"title": "fivem_dev_tools",
16+
"width": 800,
17+
"height": 600
18+
}
19+
],
20+
"security": {
21+
"csp": null
4622
}
47-
}
23+
},
24+
"bundle": {
25+
"active": true,
26+
"targets": "all",
27+
"icon": [
28+
"icons/32x32.png",
29+
"icons/128x128.png",
30+
31+
"icons/icon.icns",
32+
"icons/icon.ico"
33+
],
34+
"createUpdaterArtifacts": true
35+
},
36+
"plugins": {
37+
"updater": {
38+
"pubkey": "dW50cnVzdGVkIGNvbW1lbnQ6IG1pbmlzaWduIHB1YmxpYyBrZXk6IEE1NEEyRkY1ODg0N0VBN0MKUldSODZrZUk5UzlLcGJ2YlhaTVNnREJRYmYxbXZoS2pqYjhzcDVDWkdCeGs0Q1JzSzdER2hvRE8K",
39+
"endpoints": [
40+
"https://github.com/Austinb96/fivem_dev_tools/releases/latest/download/latest.json"
41+
],
42+
"windows": {
43+
"installMode": "passive"
44+
}
45+
}
46+
}
47+
}

0 commit comments

Comments
 (0)