-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.15 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.15 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
{
"name": "layercake-tool",
"version": "0.3.7",
"description": "Interactive graph transformation and visualization tool",
"private": true,
"scripts": {
"build": "npm run frontend:build",
"tauri:dev": "cd src-tauri && cargo tauri dev",
"tauri:build": "cd src-tauri && cargo tauri build",
"tauri:build:linux": "./scripts/build-linux.sh",
"tauri:build:macos": "./scripts/build-macos.sh",
"tauri:build:windows": "./scripts/build-windows.sh",
"frontend:dev": "cd frontend && npm run dev",
"frontend:build": "cd frontend && npm run build",
"frontend:install": "cd frontend && npm install",
"backend:build": "cargo build -p layercake-core -p layercake-cli -p layercake-server",
"backend:test": "cargo test -p layercake-core -p layercake-cli -p layercake-server",
"install:all": "npm run frontend:install"
},
"repository": {
"type": "git",
"url": "https://github.com/michiel/layercake-tool"
},
"keywords": [
"graph",
"visualization",
"transformation",
"tauri",
"desktop",
"collaboration"
],
"author": "Layercake Contributors",
"license": "MIT OR Apache-2.0",
"dependencies": {
}
}