-
-
Notifications
You must be signed in to change notification settings - Fork 51
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.61 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.61 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
{
"name": "tosdr_browser_extension",
"version": "5.0.0",
"type": "module",
"description": "\"I have read and agree to the Terms\" is the biggest lie on the web. We aim to fix that. \"Terms of Service; Didn't Read\" is a user rights initiative to rate and label website terms & privacy policies, from very good (class A) to very bad (class E).",
"author": "ToS;DR Team",
"license": "AGPL-3.0-or-later",
"devDependencies": {
"@eslint/js": "^9.31.0",
"@types/chrome": "^0.1.0",
"@types/node": "^24.0.14",
"@typescript-eslint/eslint-plugin": "^8.37.0",
"@typescript-eslint/parser": "^8.37.0",
"eslint": "^9.31.0",
"prettier": "^3.6.2",
"rimraf": "^6.0.1",
"typescript": "^5.8.3",
"vite": "^7.1.11",
"vite-plugin-web-extension": "^4.4.4"
},
"scripts": {
"dev": "vite build --watch --mode development --config vite.chrome.config.ts",
"dev:firefox": "vite build --watch --mode development --config vite.firefox.config.ts",
"build": "node scripts/build.js",
"build:chrome": "vite build --mode production --config vite.chrome.config.ts",
"build:firefox": "vite build --mode production --config vite.firefox.config.ts",
"clean": "rimraf dist build tsc",
"type-check": "tsc --noEmit",
"lint": "eslint src scripts --ext .js,.ts",
"lint:fix": "eslint src scripts --ext .js,.ts --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tosdr/browser-extensions.git"
},
"bugs": {
"url": "https://github.com/tosdr/browser-extensions/issues"
},
"homepage": "https://github.com/tosdr/browser-extensions#readme",
"keywords": []
}