2022-11-16 20:28:43 +00:00
|
|
|
{
|
|
|
|
"name": "keycard-certify",
|
|
|
|
"version": "1.0.0",
|
|
|
|
"description": "Keycard Ident Certificate Creation Application",
|
|
|
|
"main": "./out/app.js",
|
|
|
|
"scripts": {
|
|
|
|
"build": "tsc",
|
|
|
|
"start": "npm run build && electron ./out/app.js",
|
|
|
|
"pack": "npm run build && electron-builder --dir",
|
|
|
|
"dist": "npm run build && electron-builder",
|
|
|
|
"postinstall": "electron-builder install-app-deps"
|
|
|
|
},
|
|
|
|
"build": {
|
2022-11-18 00:50:09 +00:00
|
|
|
"appId": "com.github.choppu.keycard-certify",
|
|
|
|
"productName": "Keycard Certify",
|
2022-11-16 20:28:43 +00:00
|
|
|
"files": [
|
|
|
|
"**/*",
|
|
|
|
"!tsconfig.json",
|
|
|
|
"!README.md",
|
|
|
|
"!src"
|
|
|
|
],
|
|
|
|
"mac": {
|
|
|
|
"category": "public.app-category.utilities",
|
|
|
|
"target": "zip"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"author": "Ksenia Balistreri",
|
|
|
|
"license": "MIT",
|
|
|
|
"dependencies": {
|
|
|
|
"@pokusew/pcsclite": "^0.6.0",
|
|
|
|
"electron-store": "^8.1.0",
|
|
|
|
"keycard-sdk": "github:choppu/keycard-sdk#ident",
|
|
|
|
"openpgp": "^5.5.0",
|
|
|
|
"typescript": "^4.8.4"
|
|
|
|
},
|
|
|
|
"devDependencies": {
|
|
|
|
"electron": "^21.2.3",
|
|
|
|
"electron-builder": "^24.0.0-alpha.3"
|
|
|
|
}
|
|
|
|
}
|