-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 995 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
{
"name": "open360viewer",
"version": "1.0.2",
"description": "An opensource 360° image viewer written in NodeJS using Electron and Marzipano",
"keywords": [
"360",
"image",
"viewer"
],
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "electron ",
"startDev": "npm run buildCss && npm run minify && electron .",
"minify": "node tooling/minifyAll/minifyAllSrcs.js",
"buildCss": "npx tailwindcss -i ./src/main.css -o ./dist/output.css",
"buildCssWatch": "npx tailwindcss -i ./src/main.css -o ./dist/output.css --watch"
},
"author": "TheGreydiamond",
"license": "GPL-3.0",
"dependencies": {
"@fortawesome/fontawesome-free": "^6.2.0",
"file-type": "^16.5.3",
"flowbite": "^1.5.3",
"glob": "^8.0.3",
"marzipano": "^0.10.2"
},
"devDependencies": {
"electron": "^21.0.1",
"electron-packager": "^15.5.2",
"minify": "^9.1.0",
"tailwindcss": "^3.2.4"
}
}