-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
114 lines (114 loc) · 3.95 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "NOA",
"description": "Nostr Onboarding App",
"license": "GPL-3.0",
"repository": {
"type": "git",
"url": "git+https://github.com/ildella/noa.git"
},
"engines": {
"node": "22.x"
},
"keywords": [
"nostr",
"signer",
"profile",
"mobile",
"android",
"desktop",
"linux",
"windows"
],
"homepage": "https://packages.frankie.tools/noa/release/",
"author": {
"name": "Daniele Dellafiore",
"email": "daniele@frankie.tools",
"url": "https://ildella.net/"
},
"type": "module",
"version": "0.6.2-beta.1",
"packageManager": "yarn@4.6.0+sha512.5383cc12567a95f1d668fbe762dfe0075c595b4bfff433be478dbbe24e05251a8e8c3eb992a986667c1d53b6c3a9c85b8398c35a960587fbd9fa3a0915406728",
"scripts": {
"build": "vite build",
"dev": "vite dev --host",
"start": "yarn dev",
"web": "yarn dev",
"watch": "yarn dev",
"clean": "corepack cache clean && yarn cache clean",
"android": "yarn android.dev",
"android.build.base": "yarn tauri android build --apk --split-per-abi",
"android.build.aarch64": "yarn android.build.base --target='aarch64'",
"android.build": "yarn android.build.aarch64",
"android.dev": "yarn tauri android dev",
"android.logs": "adb logcat -v raw |grep tauri.localhost",
"android.publish": "./bin/publish.sh",
"android.list": "adb shell pm list packages | grep tools.frankie.nostr.noa",
"android.uninstall": "adb uninstall tools.frankie.nostr.noa",
"desktop": "yarn desktop.dev",
"desktop.build": "yarn tauri build",
"desktop.build.deb": "yarn tauri build -b deb",
"desktop.build.updater": "yarn tauri build -b updater",
"desktop.build.appimage": "yarn tauri build -b appimage",
"desktop.dev": "yarn tauri dev",
"desktop.linux.logs": "journalctl -f |grep NOA.desktop",
"check": "svelte-kit sync && svelte-check --tsconfig ./jsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./jsconfig.json --watch",
"check:lint": "yarn lint",
"lint": "eslint . --cache --max-warnings 3",
"lint.inspect": "npx @eslint/config-inspector",
"lint.print": "eslint --print-config src/config.js >> eslint-config-dump.js",
"playwright": "playwright test",
"playwright.ci": "CI=true yarn playwright --reporter=list",
"playwright.ci.watch": "CI=true yarn playwright.watch --reporter=list",
"playwright.report": "yarn playwright show-report",
"playwright.ui": "yarn playwright --ui",
"playwright.watch": "PWTEST_WATCH=1 && yarn playwright",
"tauri": "tauri",
"tauri.update": "cd src-tauri && cargo update -p tauri",
"test": "vitest",
"test.watch": "yarn test --watch"
},
"dependencies": {
"@tauri-apps/api": "2.2.0",
"@tauri-apps/plugin-autostart": "2.2.0",
"@tauri-apps/plugin-biometric": "2.2.0",
"@tauri-apps/plugin-cli": "2.2.0",
"@tauri-apps/plugin-deep-link": "2.2.0",
"@tauri-apps/plugin-dialog": "2.2.0",
"@tauri-apps/plugin-fs": "2.2.0",
"@tauri-apps/plugin-shell": "2.2.0"
},
"devDependencies": {
"@eslint/js": "9.17.0",
"@fortawesome/fontawesome-free": "6.7.2",
"@fortawesome/free-solid-svg-icons": "6.7.2",
"@noble/ciphers": "1.2.0",
"@playwright/test": "1.49.1",
"@stylistic/eslint-plugin-js": "2.12.1",
"@sveltejs/adapter-static": "3.0.8",
"@sveltejs/kit": "2.15.1",
"@sveltejs/vite-plugin-svelte": "5.0.3",
"@tauri-apps/cli": "2.2.2",
"autoprefixer": "10.4.20",
"axios": "1.7.9",
"date-fns": "4.1.0",
"eslint": "9.17.0",
"eslint-nostandard": "0.3.2",
"eslint-plugin-playwright": "2.1.0",
"eslint-plugin-svelte": "2.46.1",
"globals": "15.14.0",
"jsdom": "25.0.1",
"nostr-tools": "2.10.4",
"playwright": "1.49.1",
"postcss": "8.4.49",
"qrcode": "1.5.4",
"semver": "7.6.3",
"svelte": "5.16.1",
"svelte-check": "4.1.1",
"tailwindcss": "3.4.17",
"typescript": "5.7.2",
"vite": "6.0.7",
"vitest": "2.1.8"
},
"stableVersion": "0.6.1"
}