-
Notifications
You must be signed in to change notification settings - Fork 48
/
Copy pathpackage.json
37 lines (37 loc) Β· 959 Bytes
/
package.json
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
{
"name": "screenboard",
"version": "3.0.3",
"description": "π¨πΎβπ« It's a overlay blackboard on your screen",
"main": "build/index.js",
"scripts": {
"start": "yarn compile && electron .",
"compile": "tsc && cp src/renderer/index.html build/",
"build": "electron-packager . --icon assets/screenboard --overwrite --out=packages"
},
"repository": {
"type": "git",
"url": "git+https://github.com/maykbrito/.git"
},
"keywords": [
"screen",
"drawer",
"overlay",
"blackboard",
"html canvas",
"canvas",
"electron"
],
"author": "Mayk Brito",
"license": "MIT",
"bugs": {
"url": "https://github.com/maykbrito/screenboard/issues"
},
"homepage": "https://github.com/maykbrito/screenboard#readme",
"devDependencies": {
"@types/electron": "^1.6.10",
"@types/node": "^15.12.2",
"electron": "^12.1.0",
"electron-packager": "^15.2.0",
"typescript": "^4.3.2"
}
}