-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 1.76 KB
/
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
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
{
"name": "capture-it",
"version": "0.0.4",
"description": "A simple app to instantly add notes to your todo list.",
"main": "dist/src/main.js",
"scripts": {
"start": "tsc && electron .",
"start:dev": "tsc && cross-env NODE_ENV=development electron .",
"build": "tsc",
"pack": "npm run build && electron-builder --dir",
"dist": "npm run build && electron-builder",
"dist:mac": "npm run build && electron-builder --x64 --arm64",
"postinstall": "electron-builder install-app-deps"
},
"build": {
"productName": "Capture It",
"appId": "org.capture-it",
"mac": {
"category": "public.app-category.productivity",
"target": [
"dmg",
"zip"
],
"hardenedRuntime": true,
"gatekeeperAssess": false,
"type": "distribution"
},
"dmg": {
"contents": [
{
"x": 130,
"y": 220
},
{
"x": 410,
"y": 220,
"type": "link",
"path": "/Applications"
}
]
},
"win": {
"target": "NSIS",
"icon": "assets/icon_512.ico"
},
"directories": {
"output": "release"
}
},
"author": "Marek Lewandowski",
"license": "UNLICENSED",
"dependencies": {
"@electron/osx-sign": "^1.0.4",
"comment-json": "^4.2.3",
"css-loading-spinners": "^0.2.0",
"dotenv": "^16.3.1",
"electron-default-menu": "^1.0.2",
"electron-store": "^8.1.0",
"lodash": "^4.17.21",
"open": "8.1.0",
"uuid": "^9.0.0"
},
"devDependencies": {
"@types/lodash": "4.14.195",
"@types/node": "^20.3.1",
"@types/uuid": "^9.0.2",
"cross-env": "^7.0.3",
"electron": "^25.2.0",
"electron-builder": "^24.4.0",
"ts-node": "^10.9.1",
"typescript": "^5.1.3"
}
}