File size: 2,254 Bytes
2a196ac | 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 | {
"name": "fritree-enterprise-platform",
"version": "1.0.0",
"description": "FreeTree's professional platform for integrated campaign management, progress and task tracking, and human behavior simulation to prevent blocking and double-anchor encryption (SIS) for Chrome browsers, Manifest V3.",
"main": "background.js",
"scripts": {
"build": "node build.js",
"lint": "eslint \"**/*.js\"",
"lint:fix": "eslint \"**/*.js\" --fix",
"format": "prettier --write \"**/*.{js,json,html,css,md}\"",
"test": "echo \"Error: no test specified\" && exit 0"
},
"keywords": [
"chrome-extension",
"manifest-v3",
"automation",
"behavioral-simulation",
"stealth-protection",
"arabic-rtl"
],
"author": "Fritree Development Group",
"license": "UNLICENSED",
"private": true,
"devDependencies": {
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-html": "^8.1.1",
"prettier": "^3.2.5"
},
"eslintConfig": {
"env": {
"browser": true,
"es2022": true,
"webextensions": true,
"worker": true
},
"extends": [
"eslint:recommended",
"prettier"
],
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "script"
},
"rules": {
"no-unused-vars": [
"warn",
{
"vars": "all",
"args": "none",
"ignoreRestSiblings": true
}
],
"no-console": "off",
"strict": [
"error",
"function"
]
},
"globals": {
"FritreeCrypto": "readonly",
"FritreeStorage": "readonly",
"FritreeDashboard": "readonly",
"FritreeFacebook": "readonly",
"FritreeWhatsApp": "readonly",
"FritreeLibrary": "readonly",
"FritreeScheduler": "readonly",
"FritreeRotation": "readonly",
"FritreeHistory": "readonly",
"FritreeMigration": "readonly",
"FritreeAccount": "readonly",
"FritreeWallet": "readonly",
"FritreeRules": "readonly"
}
},
"prettier": {
"semi": true,
"singleQuote": true,
"tabWidth": 4,
"trailingComma": "none",
"printWidth": 120
}
} |