This repository has been archived by the owner on Jun 23, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
107 lines (107 loc) · 3.24 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
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": "txt",
"version": "1.0.0-beta.1",
"description": "a smol private text editor",
"main": "build/main/main.js",
"scripts": {
"clean": "rm -rf .cache/ build/ app/main/.parcel app/renderer/.parcel dist/",
"dist": "npm run clean && npm run main:build && npm run renderer:build && npm run dist:mac",
"dist:linux": "electron-builder -l",
"dist:mac": "electron-builder -m",
"dist:win": "electron-builder -w",
"electron:start": "nodemon --watch app/main/.parcel --exec \"electron .\"",
"main:build": "parcel build app/main/main.js --out-dir build/main/ --out-file main --target electron",
"main:watch": "parcel watch app/main/main.js --out-dir app/main/.parcel --out-file main --target electron",
"parcel:watch": "run-p -r main:watch renderer:watch",
"postinstall": "electron-builder install-app-deps",
"rebuild": "electron-rebuild -f -w keytar",
"renderer:build": "parcel build app/renderer/index.html --out-dir build/renderer/ --public-url ./",
"renderer:watch": "parcel app/renderer/index.html --port 9008 --out-dir app/renderer/.parcel/development",
"report": "electronegativity -i ./app --output electronegativity-report.csv -r",
"release": "bump && npm run dist",
"start": "cp ./node_modules/openpgp/dist/openpgp.worker.min.js ./app/main/utils/openpgp.worker.min.js && run-s main:build watch",
"watch": "run-p -r parcel:watch electron:start"
},
"repository": {
"type": "git",
"url": "github.com/shibacomputer/txt.git"
},
"author": "Cade <[email protected]>",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.5.5",
"choo-devtools": "^3.0.0",
"electron": "^6.0.1",
"electron-builder": "^21.2.0",
"electron-rebuild": "^1.8.5",
"nodemon": "^1.19.1",
"npm-run-all": "^4.1.5",
"parcel-bundler": "^1.12.4"
},
"dependencies": {
"app-root-path": "^2.2.1",
"choo-persist": "^3.0.2",
"codemirror": "^5.48.2",
"compass": "^0.1.1",
"csjs-inject": "^1.0.1",
"electron-better-ipc": "^0.4.0",
"electron-is-dev": "^1.1.0",
"electron-store": "^4.0.0",
"fs-extra": "^8.1.0",
"keytar": "^4.13.0",
"lodash.get": "^4.4.2",
"markdown-it": "^9.0.1",
"moment": "^2.24.0",
"monoapp": "^3.0.0",
"monoapp-react": "^1.1.2",
"node-polyglot": "^2.3.1",
"openpgp": "^4.5.5",
"react": "^16.9.0",
"react-codemirror2": "^6.0.0",
"recompose": "^0.30.0",
"regenerator-runtime": "^0.13.3",
"underscore": "^1.9.1"
},
"homepage": "./",
"build": {
"appId": "shiba.computer.txt",
"productName": "Txt",
"publish": [
{
"provider": "generic",
"url": "http://txtapp.io/releases/${os}",
"channel": "latest"
}
],
"mac": {
"darkModeSupport": true,
"category": "public.app-category.productivity",
"target": [
"dmg",
"zip"
]
},
"dmg": {
"contents": [
{
"x": 128,
"y": 200,
"type": "file"
},
{
"x": 400,
"y": 200,
"type": "link",
"path": "/Applications"
}
]
},
"directories": {
"buildResources": "assets"
},
"files": [
"build/main/main.js",
"build/renderer/**/*"
]
}
}