-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.34 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"name": "swagmoor",
"description": "A cross-platform system application dock built in Tauri with Rust, JavaScript, HTML & CSS",
"author": "jojobyte <[email protected]> (https://jojo.io/)",
"license": "MPL-2.0",
"version": "0.0.2",
"repository": {
"type": "git",
"url": "https://github.com/jojobyte/swagmoor.git"
},
"keywords": [
"desktop",
"app",
"application",
"dock",
"tauri",
"rust"
],
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/jojobyte"
},
"https://ko-fi.com/jojobyte",
"https://liberapay.com/jojobyte/"
],
"scripts": {
"start": "npm run serve & npm run tauri dev",
"build": "npm run tauri build",
"copy:modules": "cp node_modules/tauri-plugin-store-api/webview-dist/index.min.js dist/tauri.store.js",
"serve": "lite-reload dist --port=9000",
"tauri": "tauri",
"patch": "cargo --manifest-path src-tauri/Cargo.toml release patch --execute",
"minor": "cargo --manifest-path src-tauri/Cargo.toml release minor --execute",
"major": "cargo --manifest-path src-tauri/Cargo.toml release major --execute"
},
"dependencies": {
"@tauri-apps/api": "^1.0.2",
"tauri-plugin-store-api": "github:tauri-apps/tauri-plugin-store#dev"
},
"devDependencies": {
"@tauri-apps/cli": "^1.0.5",
"lite-reload": "^1.0.2"
}
}