-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 2.98 KB
/
Copy pathpackage.json
File metadata and controls
107 lines (107 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
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
{
"name": "pixelpets",
"version": "0.4.0",
"description": "A pixel cat or dog that lives on your desktop",
"main": "src/main.js",
"author": "JOhnsonKC201",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/JOhnsonKC201/pixelpets.git"
},
"scripts": {
"start": "electron .",
"autostart:off": "electron . --autostart=off",
"sheet": "electron . --sheet",
"sheet:dog": "node scripts/pet-sheet.js dog",
"sheet:cat": "node scripts/pet-sheet.js cat",
"climb-frames": "node scripts/embed-climb-frames.js",
"poses:cat": "node scripts/pet-sheet.js cat --all",
"poses:dog": "node scripts/pet-sheet.js dog --all",
"icon": "node scripts/make-logo-icons.js",
"social": "node scripts/make-social-card.js",
"pack": "electron-builder --dir",
"dist": "electron-builder --win nsis",
"dist:mac": "electron-builder --mac",
"test": "node --test",
"lint": "eslint . --cache --cache-location node_modules/.cache/eslint/",
"hook": "node scripts/install-hook.js",
"ipad": "node tools/ipad-terminal/server.js",
"ipad:lan": "node tools/ipad-terminal/server.js --lan",
"test:boot": "node scripts/bootcheck.js",
"check:hook": "electron scripts/hook-check.js",
"demo": "node scripts/make-demo-gif.js mp4",
"demo:hero": "node scripts/make-demo-gif.js hero mp4",
"demo:gallery": "node scripts/make-demo-gif.js gallery",
"demo:carousel": "node scripts/make-demo-gif.js carousel",
"demo:all": "node scripts/make-demo-gif.js all mp4",
"reel": "node scripts/make-reel.js",
"frames:import": "node scripts/import-frames.js"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@ffmpeg-installer/ffmpeg": "^1.1.0",
"electron": "^44.1.0",
"electron-builder": "^26.15.3",
"eslint": "^10.9.1",
"gifenc": "^1.0.3",
"globals": "^17.11.0"
},
"dependencies": {
"imapflow": "^1.7.7",
"node-ical": "^0.27.1",
"uiohook-napi": "^1.5.5"
},
"build": {
"appId": "com.johnsonkc.pixelcat",
"productName": "pixelpets",
"npmRebuild": false,
"afterPack": "scripts/adhoc-sign.js",
"directories": {
"output": "dist"
},
"files": [
"src/**/*",
"assets/**/*",
"agent-hook.js",
"scripts/notify.js",
"package.json"
],
"win": {
"icon": "assets/icon.ico",
"target": [
"nsis"
]
},
"mac": {
"icon": "assets/icon-512.png",
"category": "public.app-category.entertainment",
"extendInfo": {
"LSUIElement": 1
},
"target": [
{
"target": "dmg",
"arch": [
"arm64",
"x64"
]
},
{
"target": "zip",
"arch": [
"arm64",
"x64"
]
}
]
},
"nsis": {
"oneClick": false,
"perMachine": false,
"allowToChangeInstallationDirectory": true,
"createDesktopShortcut": true,
"shortcutName": "pixelpets"
}
}
}