-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.56 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.56 KB
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "turbo-desktop",
"version": "0.2.1",
"description": "Turbo Native for Desktop \u2014 wrap your Rails/Turbo app in a native desktop shell",
"author": "aguspe",
"license": "MIT",
"type": "module",
"homepage": "https://github.com/aguspe/turbo_desktop",
"repository": {
"type": "git",
"url": "git+https://github.com/aguspe/turbo_desktop.git"
},
"bugs": {
"url": "https://github.com/aguspe/turbo_desktop/issues"
},
"keywords": [
"turbo",
"hotwire",
"rails",
"tauri",
"desktop",
"hotwire-native"
],
"engines": {
"node": ">=18"
},
"bin": {
"turbo-desktop": "./cli/turbo-desktop.js"
},
"//files": "The CLI scaffolds a project by copying these out of the installed package, so they have to ship with it.",
"files": [
"cli",
"src",
"src-tauri/src",
"src-tauri/icons/*.png",
"src-tauri/icons/*.icns",
"src-tauri/icons/*.ico",
"src-tauri/capabilities",
"src-tauri/Cargo.toml",
"src-tauri/build.rs",
"src-tauri/tauri.conf.json",
"README.md",
"LICENSE"
],
"scripts": {
"tauri": "tauri",
"dev": "cargo tauri dev",
"build": "cargo tauri build",
"build:apple-silicon": "cargo tauri build --target aarch64-apple-darwin",
"test": "node --test",
"lint": "eslint .",
"test:e2e": "node --test e2e/bridge.e2e.mjs"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@tauri-apps/cli": "^2.0.0",
"eslint": "^10.8.0",
"jsdom": "^29.0.1",
"webdriverio": "^9.20.0"
},
"dependencies": {
"@tauri-apps/api": "^2.0.0"
}
}