-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.54 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.54 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
{
"name": "ig-like-blocker",
"version": "2.0.0",
"private": true,
"type": "module",
"description": "Chrome extension that blocks liking on Instagram — cancels the like network requests and hides the like buttons.",
"license": "MIT",
"author": "Bar-2020",
"homepage": "https://github.com/Bar-2020/ig-like-blocker#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/Bar-2020/ig-like-blocker.git"
},
"bugs": {
"url": "https://github.com/Bar-2020/ig-like-blocker/issues"
},
"keywords": [
"chrome-extension",
"instagram",
"manifest-v3",
"digital-wellbeing",
"declarativenetrequest"
],
"engines": {
"node": ">=22.12.0"
},
"scripts": {
"build": "vite build",
"watch": "vite build --watch",
"lint": "eslint . --report-unused-disable-directives --max-warnings 0",
"format": "prettier --write .",
"format:check": "prettier --check .",
"verify": "node scripts/check-manifest.mjs",
"check": "npm run lint && npm run format:check && npm run test && npm run build && npm run verify",
"test": "node --test"
},
"dependencies": {
"react": "^19.2.8",
"react-dom": "^19.2.8"
},
"devDependencies": {
"@eslint/js": "^9.39.5",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.4",
"eslint": "^9.39.5",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.1.1",
"globals": "^17.8.0",
"prettier": "^3.9.6",
"vite": "^8.1.5"
}
}