-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.63 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 2.63 KB
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
{
"name": "teshuva-algorithm",
"version": "0.4.0",
"description": "The Algorithm That Repented — Clippy mascot that explains why you see what you see on social media",
"main": "desktop/main.js",
"scripts": {
"start": "electron ./desktop/main.js",
"build": "npx esbuild extension/content/bundle-entry.js --bundle --format=iife --outfile=extension/content/bundle.js && npx esbuild desktop/renderer-entry.js --bundle --format=iife --outfile=desktop/renderer.js && npx esbuild extension/background-entry.js --bundle --format=iife --outfile=extension/background.js && npx esbuild extension/popup/popup-entry.js --bundle --format=iife --outfile=extension/popup/popup.js",
"build:desktop": "npx esbuild desktop/renderer-entry.js --bundle --format=iife --outfile=desktop/renderer.js",
"dist": "npm run build:desktop && npx electron-builder --win --x64",
"desktop": "electron desktop/main.js",
"extension": "echo Load the extension/ folder in chrome://extensions",
"lint": "echo TODO",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js tests/"
},
"build": {
"appId": "ai.davidpatlas.teshuva-algorithm",
"productName": "האלגוריתם שחזר בתשובה",
"copyright": "Copyright © 2026 David Atlas",
"directories": {
"output": "dist-installer"
},
"files": [
"desktop/**/*",
"node_modules/**/*",
"package.json",
"!node_modules/electron/**",
"!node_modules/electron-builder/**",
"!node_modules/esbuild/**",
"!node_modules/playwright/**"
],
"win": {
"target": [
{
"target": "nsis",
"arch": [
"x64"
]
}
],
"icon": "desktop/icon.ico"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true,
"installerIcon": "desktop/icon.ico",
"uninstallerIcon": "desktop/icon.ico",
"shortcutName": "האלגוריתם שחזר בתשובה",
"createDesktopShortcut": true,
"createStartMenuShortcut": true,
"artifactName": "teshuva-algorithm-setup-${version}.exe"
}
},
"jest": {
"transform": {}
},
"keywords": [
"clippy",
"browser-extension",
"social-media",
"algorithm",
"transparency",
"privacy"
],
"license": "MIT",
"type": "commonjs",
"devDependencies": {
"electron": "^42.4.0",
"electron-builder": "^26.15.3",
"esbuild": "^0.28.0",
"jest": "^30.4.2",
"playwright": "^1.60.0"
},
"dependencies": {
"clippyjs": "^0.1.0"
},
"repository": {
"type": "git",
"url": "https://github.com/DavidPatlas-AI/teshuva-algorithm"
}
}