-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
149 lines (149 loc) · 4.05 KB
/
package.json
File metadata and controls
149 lines (149 loc) · 4.05 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
{
"name": "constantine-browser",
"version": "10.0.1",
"description": "CONSTANTINE Browser - The Exorcist's Edge. The OSINT Investigation Suite with supernatural noir theme. A privacy-first browser with Tor integration, anti-fingerprinting, and comprehensive intelligence tools. Between Heaven and Hell, intelligence prevails.",
"main": "src/main/main.js",
"scripts": {
"start": "npm run build:renderer && electron .",
"dev": "npm run build:renderer && NODE_ENV=development electron .",
"dev:renderer": "vite build --watch",
"build:renderer": "vite build",
"build": "npm run build:renderer && electron-builder",
"build:win": "npm run build:renderer && electron-builder --win",
"build:mac": "npm run build:renderer && electron-builder --mac",
"build:linux": "npm run build:renderer && electron-builder --linux",
"pack": "npm run build:renderer && electron-builder --dir",
"postinstall": "electron-builder install-app-deps",
"test": "jest",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch",
"lint": "eslint src/**/*.js",
"lint:fix": "eslint src/**/*.js --fix",
"format": "prettier --write src/**/*.js"
},
"keywords": [
"osint",
"browser",
"tor",
"privacy",
"investigation",
"security",
"electron",
"chromium",
"intelligence",
"research",
"constantine",
"supernatural",
"exorcist"
],
"author": {
"name": "CONSTANTINE Team",
"email": "dev@constantine-browser.io"
},
"homepage": "https://github.com/thumpersecure/Spin",
"license": "Unlicense",
"theme": {
"name": "constantine",
"codename": "The Exorcist's Edge",
"tagline": "Between Heaven and Hell, intelligence prevails."
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@sveltejs/vite-plugin-svelte": "^6.2.4",
"electron": "^40.0.0",
"electron-builder": "^26.4.0",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"globals": "^17.1.0",
"jest": "^30.2.0",
"prettier": "^3.8.1",
"svelte": "^5.48.2",
"vite": "^7.3.1"
},
"dependencies": {
"electron-store": "^8.2.0"
},
"overrides": {
"tar": "^6.2.1"
},
"build": {
"appId": "com.constantine.browser",
"productName": "CONSTANTINE Browser",
"directories": {
"output": "dist"
},
"files": [
"src/**/*",
"assets/**/*"
],
"mac": {
"category": "public.app-category.productivity",
"target": [
"dmg",
"zip"
],
"icon": "assets/icon.icns",
"darkModeSupport": true,
"hardenedRuntime": true,
"gatekeeperAssess": false
},
"win": {
"target": [
"nsis",
"portable",
"zip"
],
"icon": "assets/icon.ico"
},
"linux": {
"target": [
"AppImage",
"deb",
"tar.gz"
],
"category": "Network",
"icon": "assets/icon.png",
"executableName": "constantine-browser",
"synopsis": "Privacy-first OSINT Investigation Browser",
"description": "CONSTANTINE Browser - The Exorcist's Edge. A privacy-first browser engineered for OSINT investigations with Tor integration, anti-fingerprinting, and AI-powered research tools. Compatible with Parrot OS, Kali Linux, and other Debian-based distributions.",
"maintainer": "CONSTANTINE Team <dev@constantine-browser.io>"
},
"deb": {
"depends": [
"libgtk-3-0",
"libnotify4",
"libnss3",
"libxss1",
"libxtst6",
"xdg-utils",
"libatspi2.0-0",
"libuuid1",
"libsecret-1-0"
],
"recommends": [
"tor"
],
"category": "Network"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true
}
},
"jest": {
"testEnvironment": "node",
"testMatch": [
"**/tests/**/*.test.js"
],
"collectCoverageFrom": [
"src/extensions/**/*.js",
"!src/extensions/**/index.js"
],
"coverageDirectory": "coverage",
"coverageReporters": [
"text",
"lcov",
"html"
]
}
}