forked from kimlimjustin/xplorer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
145 lines (145 loc) · 3.8 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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
{
"name": "xplorer",
"description": "Xplorer, a customizable, modern file manager",
"version": "0.2.0",
"author": "Justin Maximillian Kimlim <kimlimjustin@gmail.com>",
"main": "outs/src/main.js",
"icon": "build/icon.icns",
"homepage": "https://xplorer.vercel.app",
"repository": {
"type": "git",
"url": "https://github.com/kimlimjustin/xplorer.git"
},
"os": [
"darwin",
"win32",
"linux"
],
"scripts": {
"electron": "electron ./outs/src/main.js",
"start": "yarn compile && yarn sass && yarn electron",
"dev": "yarn compile && concurrently \"yarn compile:watch\" \"yarn sass:watch\" \"yarn copyfiles:watch\" \"yarn electron\"",
"sass": "sass src/Public/style.scss outs/src/Public/style.css",
"sass:watch": "sass src/Public/style.scss outs/src/Public/style.css -w",
"docs": "yarn --cwd ./docs start",
"pretest": "yarn compile",
"test": "jest",
"copyfiles": "node scripts/copyfiles",
"copyfiles:watch": "node scripts/ejs-watcher",
"compile": "rimraf outs && tsc && yarn sass && yarn copyfiles",
"compile:watch": "tsc -w",
"crowdin": "crowdin",
"crowdin:sync": "yarn --cwd ./docs write-translations && crowdin upload && crowdin download",
"lint": "eslint -c .eslintrc.yml --ext .ts ./src",
"prettier": "prettier --write src",
"grunt": "grunt",
"css:minify": "cleancss --batch --batch-suffix \"\" outs/**/*.css ",
"prebuild": "yarn compile && yarn grunt && yarn css:minify",
"build": "electron-builder",
"build:win": "electron-builder --win",
"build:linux": "electron-builder --linux",
"build:mac": "electron-builder --mac",
"native_build": "node-gyp rebuild",
"install": "node scripts/install.js",
"postinstall": "patch-package"
},
"build": {
"files": [
"**/*",
"!test/**/*",
"!dist/**/*",
"!patches/**/*",
"!scripts/**/*",
"!docs/**/*",
"!src/**/*",
"!scripts/**/*",
"!paths/**/*",
"!.vscode/**/*",
".github/**/*"
],
"directories": {
"buildResources": "icons"
},
"win": {
"target": [
"nsis"
]
},
"nsis": {
"license": "LICENSE",
"runAfterFinish": true
},
"linux": {
"target": [
"AppImage",
"deb"
]
},
"appId": "app.vercel.xplorer",
"productName": "Xplorer",
"copyright": "Copyright 2021 Justin Maximillian Kimlim and the Xplorer Contributors"
},
"keywords": [
"Xplorer",
"File explorer",
"File",
"File manager",
"Folders",
"Directory"
],
"license": "Apache-2.0",
"devDependencies": {
"@crowdin/cli": "^3.6.5",
"@types/ejs": "^3.1.0",
"@types/marked": "^3.0.0",
"@types/mv": "^2.1.2",
"@types/uuid": "^8.3.1",
"@typescript-eslint/eslint-plugin": "^4.30.0",
"@typescript-eslint/parser": "^4.30.0",
"clean-css-cli": "^5.3.3",
"concurrently": "^6.2.1",
"electron": "13.1.4",
"electron-builder": "^22.11.7",
"electron-reloader": "^1.2.1",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"grunt": "^1.4.1",
"grunt-cli": "^1.4.3",
"grunt-contrib-uglify": "^5.0.1",
"grunt-contrib-watch": "^1.1.0",
"node-watch": "^0.7.1",
"patch-package": "^6.4.7",
"postinstall-postinstall": "^2.1.0",
"prettier": "2.3.2",
"sass": "1.42.1",
"rimraf": "^3.0.2",
"typescript": "^4.4.2"
},
"dependencies": {
"@electron/remote": "^1.2.1",
"cpy": "^8.1.2",
"ejs": "^3.1.6",
"electron-acrylic-window": "^0.5.8",
"electron-is-dev": "^2.0.0",
"electron-json-storage-sync": "^1.2.0",
"electron-log": "^4.4.1",
"electron-prompt": "^1.6.2",
"electron-updater": "^4.3.9",
"electron-window-state": "^5.0.3",
"fswin": "^3.21.905",
"highlight.js": "^11.2.0",
"is-hidden-file": "1.1.2",
"jest": "^27.1.0",
"mammoth": "^1.4.18",
"marked": "^3.0.2",
"mv": "^2.1.1",
"node-mv": "^0.1.3",
"platform-folders": "^0.5.4",
"trash": "^7.2.0",
"uuid": "^8.3.2",
"xlsx": "^0.17.1"
},
"optionalDependencies": {
"electron-clipboard-ex": "^1.3.3"
}
}