-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
126 lines (126 loc) · 3.12 KB
/
Copy pathpackage.json
File metadata and controls
126 lines (126 loc) · 3.12 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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "electron-todolist",
"version": "2.4.1",
"description": "TodoList Desktop App with Group Management and Performance Optimization",
"main": "src/main/main.js",
"engines": {
"node": ">=16.0.0"
},
"scripts": {
"start": "chcp 65001 >nul && electron .",
"build": "electron-builder --win --x64",
"build:dir": "electron-builder --win --x64 --dir",
"build:mac": "electron-builder --mac",
"build:mac:dir": "electron-builder --mac --dir",
"build:mac:x64": "electron-builder --mac --x64",
"build:mac:arm64": "electron-builder --mac --arm64",
"build:all": "electron-builder --win --x64 --mac"
},
"keywords": [
"electron",
"todolist",
"sticky-notes",
"group-management"
],
"author": "",
"license": "MIT",
"devDependencies": {
"electron": "^27.0.0",
"electron-builder": "^24.6.4",
"sharp": "^0.34.5",
"to-ico": "^1.1.5"
},
"build": {
"appId": "com.electron.todolist",
"productName": "TodoList",
"protocols": [
{
"name": "TodoList",
"schemes": [
"com.electron.todolist"
]
}
],
"win": {
"target": [
{
"target": "nsis",
"arch": [
"x64"
]
}
],
"icon": "build/icon.ico"
},
"mac": {
"target": [
{
"target": "dmg",
"arch": [
"x64",
"arm64"
]
}
],
"icon": "build/icon.icns",
"category": "public.app-category.productivity",
"hardenedRuntime": false,
"gatekeeperAssess": false,
"identity": null
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true,
"createDesktopShortcut": true,
"createStartMenuShortcut": true,
"deleteAppDataOnUninstall": false
},
"directories": {
"output": "dist"
},
"files": [
"**/*",
"!dist",
"!.git",
"!electron-cache",
"!**/node_modules/@types/**/*",
"!**/node_modules/*/{CHANGELOG.md,README.md,README,readme.md,readme}",
"!**/node_modules/*/{test,__tests__,tests,powered-test,example,examples}",
"!**/node_modules/*.d.ts",
"!**/node_modules/.bin",
"!**/*.{iml,o,hprof,orig,pyc,pyo,rbc,swp,csproj,sln,xproj}",
"!.editorconfig",
"!**/._*",
"!**/{.DS_Store,.git,.hg,.svn,CVS,RCS,SCCS,.gitignore,.gitattributes}",
"!**/{__pycache__,thumbs.db,.flowconfig,.idea,.vs,.nyc_output}",
"!**/{appveyor.yml,.travis.yml,circle.yml}",
"!**/{npm-debug.log,yarn.lock,.yarn-integrity,.yarn-metadata.json}"
],
"extraResources": [
{
"from": "build/icon.ico",
"to": "build/icon.ico"
},
{
"from": "build/icon.icns",
"to": "build/icon.icns",
"filter": ["**/*"]
}
],
"electronDownload": {
"cache": "./electron-cache"
},
"publish": [
{
"provider": "github",
"owner": "CoderJackLiu",
"repo": "WhatToDo"
}
]
},
"dependencies": {
"@supabase/supabase-js": "^2.81.1",
"electron-updater": "^6.6.2",
"tslib": "^2.8.1"
}
}