Files
open360viewer/package.json
TheGreyDiamond 640132a8a2 - packaging kinda works now
- start of file listing
- allow argument opening
2022-05-28 14:17:23 +02:00

35 lines
1009 B
JSON

{
"name": "open360viewer",
"version": "1.0.1",
"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": "^5.15.4",
"@themesberg/flowbite": "^1.2.0",
"file-type": "^16.5.3",
"glob": "^7.2.0",
"marzipano": "^0.10.2"
},
"devDependencies": {
"electron": "^16.0.6",
"electron-packager": "^15.4.0",
"minify": "^8.0.3",
"tailwindcss": "^3.0.11"
}
}