mirror of
https://github.com/cupcakearmy/unpixel.git
synced 2024-11-01 09:24:11 +01:00
64 lines
1.8 KiB
JSON
64 lines
1.8 KiB
JSON
{
|
|
"private": true,
|
|
"name": "unpixel",
|
|
"productName": "UnPixel",
|
|
"description": "Help your eyes take a break",
|
|
"author": {
|
|
"name": "Niccolo Borgioli",
|
|
"email": "hi@nicco.io",
|
|
"url": "https://nicco.io"
|
|
},
|
|
"repository": {
|
|
"url": "https://github.com/cupcakearmy/unpixel"
|
|
},
|
|
"version": "1.0.0",
|
|
"main": "./dist/back/index.js",
|
|
"scripts": {
|
|
"start": "electron .",
|
|
"watch:front": "parcel watch --target front --no-hmr --no-cache ./src/front/banner/index.html ./src/front/settings/index.html",
|
|
"watch:back": "parcel watch --target back --no-hmr --no-cache ./src/back/index.ts",
|
|
"dev": "run-p watch:*",
|
|
"build:front": "parcel build --target front ./src/front/banner/index.html ./src/front/settings/index.html",
|
|
"build:back": "parcel build --target back ./src/back/index.ts",
|
|
"build": "run-s build:*",
|
|
"pack": "electron-builder -mwl",
|
|
"pack:dev": "electron-builder -m",
|
|
"dist": "rm -rf .parcel-cache dist && run-s build pack"
|
|
},
|
|
"browserslist": [
|
|
"last 2 Chrome versions"
|
|
],
|
|
"targets": {
|
|
"back": {
|
|
"distDir": "./dist/back",
|
|
"context": "electron-main"
|
|
},
|
|
"front": {
|
|
"distDir": "./dist/front",
|
|
"context": "electron-renderer",
|
|
"publicUrl": "../"
|
|
}
|
|
},
|
|
"dependencies": {
|
|
"auto-launch": "^5.0.5",
|
|
"dayjs": "^1.10.4",
|
|
"electron-log": "^4.3.2",
|
|
"electron-store": "^7.0.2",
|
|
"react": "^17.0.2",
|
|
"react-dom": "^17.0.2",
|
|
"spectre.css": "^0.5.9",
|
|
"tachyons": "^4.12.0"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "^7.0.0-0",
|
|
"@types/react": "^17.0.3",
|
|
"@types/react-dom": "^17.0.3",
|
|
"electron": "^12.0.0",
|
|
"electron-builder": "^22.10.5",
|
|
"npm-run-all": "^4.1.5",
|
|
"parcel": "next",
|
|
"postcss": "^8.2.9",
|
|
"typescript": "^4.2.3"
|
|
}
|
|
}
|