This repository was archived by the owner on Jun 19, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.81 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.81 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
{
"name": "ninetails",
"productName": "Ninetails",
"version": "3.8.1",
"description": "A private, fast, and beautiful web browser.",
"main": "src/index.js",
"scripts": {
"start": "electron-forge start",
"package": "electron-forge package",
"premake": "npx tailwindcss -i ./src/index.css -o ./src/tailwind.css --minify",
"make": "electron-forge make",
"publish": "electron-forge publish",
"lint": "echo \"No linting configured\"",
"dev": "concurrently -k npm:start npm:tailwind",
"tailwind": "npx tailwindcss -i ./src/index.css -o ./src/tailwind.css --minify --watch"
},
"keywords": [],
"author": "MystPi",
"license": "MIT",
"config": {
"forge": {
"packagerConfig": {
"icon": "./appicons/ninetails",
"name": "Ninetails",
"executableName": "ninetails"
},
"makers": [
{
"name": "@electron-forge/maker-squirrel",
"config": {
"name": "ninetails"
}
},
{
"name": "@electron-forge/maker-zip",
"platforms": [
"darwin"
]
},
{
"name": "@electron-forge/maker-deb",
"config": {
"icon": "./appicons/ninetails.png"
}
},
{
"name": "@electron-forge/maker-rpm",
"config": {}
}
]
}
},
"dependencies": {
"electron-squirrel-startup": "^1.0.0"
},
"devDependencies": {
"@electron-forge/cli": "^6.0.0-beta.64",
"@electron-forge/maker-deb": "^6.0.0-beta.64",
"@electron-forge/maker-rpm": "^6.0.0-beta.64",
"@electron-forge/maker-squirrel": "^6.0.0-beta.64",
"@electron-forge/maker-zip": "^6.0.0-beta.64",
"concurrently": "^7.2.2",
"electron": "19.0.4",
"electron-reloader": "^1.2.3",
"tailwindcss": "^3.1.3"
}
}