Spaces:
Paused
Paused
File size: 1,324 Bytes
5a81b95 | 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 | {
"name": "css-stripper-pro-hardened",
"version": "1.1.0",
"description": "Windows GUI to crawl a site, collect CSS, purge unused selectors, and export CSS. Hardened and fault-tolerant.",
"author": "Generated",
"license": "MIT",
"type": "module",
"main": "main.mjs",
"scripts": {
"dev": "electron .",
"start": "electron .",
"build:win": "electron-builder --win nsis",
"build:dir": "electron-builder --dir"
},
"dependencies": {
"axios": "^1.7.7",
"cheerio": "^1.0.0-rc.12",
"fs-extra": "^11.2.0"
},
"devDependencies": {
"electron": "^30.5.1",
"electron-builder": "^24.13.3"
},
"build": {
"appId": "com.example.cssstripper.hardened",
"productName": "CSS Stripper Pro",
"files": [
"main.mjs",
"preload.cjs",
"index.html",
"renderer.js",
"src/**/*",
"package.json"
],
"asar": true,
"directories": {
"buildResources": "build"
},
"win": {
"target": [
{
"target": "nsis",
"arch": [
"x64"
]
}
],
"artifactName": "css-stripper-pro-${version}-Setup.${ext}"
},
"nsis": {
"oneClick": true,
"perMachine": false,
"allowElevation": true,
"allowToChangeInstallationDirectory": false
}
}
} |