-
Notifications
You must be signed in to change notification settings - Fork 56
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.98 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 2.98 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
65
{
"name": "simpleos",
"version": "2.0.0-alpha.0",
"scripts": {
"ng": "ng",
"start": "scripts/with-supported-node.sh ng serve",
"build": "scripts/with-supported-node.sh ng build",
"build:appstore": "scripts/with-supported-node.sh ng build --configuration appstore",
"watch": "scripts/with-supported-node.sh ng build --watch --configuration development",
"test": "scripts/with-supported-node.sh ng test",
"tauri": "tauri",
"tauri:dev": "env -u GTK_PATH -u GTK_EXE_PREFIX -u GDK_PIXBUF_MODULEDIR -u GDK_PIXBUF_MODULE_FILE -u GTK_IM_MODULE_FILE -u GIO_MODULE_DIR -u LOCPATH tauri dev",
"tauri:build": "tauri build",
"tauri:build:mac": "scripts/macos-package.sh",
"tauri:build:mac:no-updater": "scripts/macos-package.sh --no-updater",
"tauri:build:mac:universal": "scripts/macos-package.sh --universal",
"tauri:build:mac:appstore": "scripts/macos-appstore-package.sh",
"tauri:build:mac:appstore:local": "scripts/macos-appstore-local-build.sh",
"tauri:build:mac:appstore:validate": "scripts/macos-appstore-package.sh --validate",
"tauri:build:mac:appstore:upload": "scripts/macos-appstore-package.sh --upload",
"tauri:install:mac:appstore": "scripts/macos-appstore-local-build.sh && scripts/macos-install-local.sh --appstore-local",
"tauri:install:mac:appstore:open": "scripts/macos-appstore-local-build.sh && scripts/macos-install-local.sh --appstore-local --open",
"mac:signing-identities": "security find-identity -v -p codesigning && security find-identity -v -p basic",
"e2e": "bun run tests/e2e/test.ts",
"e2e:run": "bun run tests/e2e/test.ts run",
"e2e:test": "bun run tests/e2e/test.ts test",
"e2e:clean": "bun run tests/e2e/test.ts clean",
"e2e:rust": "cd src-tauri && PATH=\"$HOME/.cargo/bin:$PATH\" cargo test --test e2e_wallet --test e2e_signing -- --test-threads=1",
"e2e:rust:lib": "cd src-tauri && PATH=\"$HOME/.cargo/bin:$PATH\" cargo test --lib",
"e2e:all": "bun run e2e:run && bun run e2e:rust"
},
"private": true,
"packageManager": "[email protected]",
"dependencies": {
"@angular/common": "22.0.0-rc.2",
"@angular/compiler": "22.0.0-rc.2",
"@angular/core": "22.0.0-rc.2",
"@angular/forms": "22.0.0-rc.2",
"@angular/platform-browser": "22.0.0-rc.2",
"@angular/router": "22.0.0-rc.2",
"@tauri-apps/api": "2.11.0",
"@tauri-apps/plugin-deep-link": "2.4.9",
"@tauri-apps/plugin-process": "2.3.1",
"@tauri-apps/plugin-shell": "2.3.5",
"@tauri-apps/plugin-store": "2.4.3",
"@tauri-apps/plugin-updater": "2.10.1",
"@wharfkit/signing-request": "3.4.0",
"echarts": "6.0.0",
"pako": "2.1.0",
"rxjs": "7.8.2",
"tslib": "2.8.1"
},
"devDependencies": {
"@angular/build": "22.0.0-rc.2",
"@angular/cli": "22.0.0-rc.2",
"@angular/compiler-cli": "22.0.0-rc.2",
"@tauri-apps/cli": "2.11.2",
"@types/echarts": "5.0.0",
"@types/pako": "2.0.4",
"jsdom": "29.1.1",
"prettier": "3.8.3",
"typescript": "6.0.3",
"vitest": "4.1.6"
}
}