-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 2 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
66
67
68
69
70
71
{
"name": "snip-pilot",
"version": "0.3.0",
"description": "A local-first macOS screenshot, snipping, annotation, and agent handoff desktop app.",
"main": "src/main.js",
"author": "Snip Pilot contributors",
"license": "MIT",
"scripts": {
"start": "electron .",
"test": "node --test",
"check": "node --check src/main.js && node --check src/scroll-stitch.js",
"pack": "electron-builder --mac --dir --arm64 && scripts/sign-mac-app.sh",
"dist": "npm run pack && scripts/create-dmg.sh"
},
"build": {
"appId": "local.snippilot.app",
"productName": "Snip Pilot",
"mac": {
"identity": null,
"icon": "build/icon.png",
"category": "public.app-category.productivity",
"hardenedRuntime": true,
"gatekeeperAssess": false,
"entitlements": "build/entitlements.mac.plist",
"entitlementsInherit": "build/entitlements.mac.plist",
"extendInfo": {
"NSAudioCaptureUsageDescription": "Snip Pilot does not record audio. It only captures the screen when you start a snip.",
"NSBluetoothAlwaysUsageDescription": "Snip Pilot does not use Bluetooth.",
"NSBluetoothPeripheralUsageDescription": "Snip Pilot does not use Bluetooth.",
"NSCameraUsageDescription": "Snip Pilot does not use the camera.",
"NSMicrophoneUsageDescription": "Snip Pilot does not use the microphone."
},
"target": [
{
"target": "dir",
"arch": [
"arm64"
]
},
{
"target": "dmg",
"arch": [
"arm64"
]
}
]
},
"files": [
"src/**/*",
"package.json"
],
"directories": {
"output": "release",
"buildResources": "build"
},
"publish": [
{
"provider": "github",
"owner": "kaptainkoder",
"repo": "SnipPilot---macOS"
}
]
},
"devDependencies": {
"electron": "^42.3.0",
"electron-builder": "^26.8.1"
},
"dependencies": {
"jimp": "^1.6.1"
}
}