-
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.36 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.36 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": "@iambrian/easy-otp",
"version": "1.0.2",
"main": "dist/app.js",
"scripts": {
"dev": "npx tsx scripts/dev.ts",
"start": "rm -rf dist && cp -r assets dist && tsc && cp src/settings.html dist/ && electron .",
"pack": "rm -rf dist && cp -r assets dist && tsc && cp src/settings.html dist/ && electron-builder --dir",
"build": "rm -rf dist && cp -r assets dist && tsc && cp src/settings.html dist/ && electron-builder --publish never",
"release": "npm version patch && git push --follow-tags",
"make-icons": "npx tsx scripts/make-icons.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Brian Reed",
"license": "ISC",
"description": "macOS menu bar app for managing TOTP accounts",
"build": {
"appId": "com.iambrian.easy-otp",
"productName": "Easy OTP",
"mac": {
"category": "public.app-category.utilities",
"icon": "build/icon.icns",
"target": "dmg"
},
"files": [
"dist/**/*",
"assets/**/*"
]
},
"engines": {
"node": ">=22"
},
"devDependencies": {
"electron": "^40.6.1",
"electron-builder": "^26.8.1",
"sharp": "^0.34.5",
"typescript": "^6.0.3"
},
"dependencies": {
"jssha": "^3.3.1"
}
}