-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.51 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.51 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
{
"name": "macnu",
"private": true,
"version": "0.3.1",
"license": "PolyForm-Noncommercial-1.0.0",
"author": "Sohaib Ilyas",
"repository": {
"type": "git",
"url": "git+https://github.com/sohaibilyas/macnu.git"
},
"bugs": {
"url": "https://github.com/sohaibilyas/macnu/issues"
},
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"build:app": "./scripts/tauri-source.sh build --bundles app && MACNU_BUILD_MODE=source-build ./scripts/sign-app.sh",
"build:official": "./scripts/build-official.sh",
"release:preflight": "node ./scripts/release-preflight.mjs",
"release:sign-updater": "./scripts/sign-updater.sh",
"release:prepare": "./scripts/prepare-release.sh",
"test:ui": "vitest run src/*.test.ts",
"test:rust:source": "./scripts/test-rust.sh source-build",
"test:rust:official": "./scripts/test-rust.sh official-distribution",
"test:release-verifier": "cargo test --locked --manifest-path tools/release-verifier/Cargo.toml",
"test:release-shell": "./scripts/verify-official.sh --self-test",
"test:vendor-updater": "cargo test --locked --lib --manifest-path vendor/tauri-plugin-updater/Cargo.toml",
"verify:official": "./scripts/verify-official.sh",
"tauri": "./scripts/tauri-source.sh"
},
"dependencies": {
"@tauri-apps/api": "^2.8.0",
"@tauri-apps/plugin-opener": "^2.5.4"
},
"devDependencies": {
"@tauri-apps/cli": "^2.8.4",
"typescript": "~5.8.3",
"vite": "^7.1.7",
"vitest": "^3.2.4"
}
}