-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.74 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.74 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
{
"name": "human-first-search",
"version": "1.6.0",
"displayName": "Human-First Search",
"author": "yureitzk",
"description": "Filter out AI-generated content from search engines",
"type": "module",
"scripts": {
"build": "vite build",
"build:chrome": "cross-env MANIFEST_VERSION=3 npm run build",
"build:firefox": "cross-env MANIFEST_VERSION=2 FIREFOX_BUILD=1 npm run build",
"build:firefox-prod": "cross-env MANIFEST_VERSION=2 FIREFOX_BUILD=1 ENVIRONMENT=production npm run build",
"watch": "vite build --watch --mode development --minify false",
"dev": "vite",
"serve:firefox": "web-ext run --start-url \"about:debugging#/runtime/this-firefox\" --source-dir ./dist/",
"serve:chrome": "web-ext run -t chromium --start-url \"https://example.com\" --source-dir ./dist/",
"check": "svelte-check --tsconfig ./tsconfig.json",
"test": "vitest"
},
"license": "GPL-3.0-only",
"homepage": "https://github.com/yureitzk/human-first-search",
"devDependencies": {
"@iconify-json/logos": "^1.2.10",
"@iconify/svelte": "^4.2.0",
"@samrum/vite-plugin-web-extension": "^5.0.0",
"@sveltejs/vite-plugin-svelte": "^3.0.0",
"@tsconfig/svelte": "^5.0.2",
"@types/chrome": "^0.0.254",
"@types/webextension-polyfill": "^0.10.6",
"cross-env": "^7.0.3",
"prettier": "^3.5.1",
"prettier-plugin-svelte": "^3.3.3",
"svelte": "^4.2.19",
"svelte-check": "^3.6.0",
"svelte-preprocess": "^5.1.0",
"tslib": "^2.6.2",
"typescript": "^5.2.2",
"vite": "^5.0.0",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^4.0.13",
"web-ext": "^7.8.0"
},
"dependencies": {
"@fontsource/inter": "^5.2.8",
"air-datepicker": "^3.6.0",
"date-fns": "^4.1.0",
"dotenv": "^16.4.7",
"webextension-polyfill": "^0.10.0"
},
"volta": {
"node": "20.18.0"
}
}