-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
62 lines (62 loc) · 2.14 KB
/
package.json
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
{
"name": "full-text-tabs-forever",
"version": "1.2.1",
"description": "",
"main": "index.js",
"scripts": {
"//dev": "vite build -w was failing. something about the chrome extension vite plugin and the manifest. re-saving the manifest makes -w work, but that defeats the purpose of automated watch",
"dev": "concurrently 'pnpm run build:1 --watch' 'pnpm run build:2 --watch'",
"//build": "it's ultimately chrome's fault that we need a separate build for content-script. Unlike the service worker you cannot specify type:module, so... the script can't have imports.",
"build": "pnpm run /^build:[1-9]/",
"build:1": "vite build -c vite.config.content-script.ts",
"build:2": "vite build",
"release": "yarn version && ./scripts/release.sh",
"build:clean": "rm -rf ./dist/*",
"build:chrome": "TARGET=chrome pnpm run build",
"build:firefox": "TARGET=firefox pnpm run build",
"check": "svelte-check --tsconfig ./tsconfig.json",
"test": "bun test"
},
"type": "module",
"keywords": [
"search",
"browser history"
],
"author": "",
"license": "ISC",
"devDependencies": {
"@tailwindcss/forms": "^0.5.3",
"@tailwindcss/line-clamp": "^0.4.2",
"@tailwindcss/typography": "^0.5.9",
"@types/archiver": "6.0.1",
"@types/chrome": "~0.0.210",
"@types/node": "^18.11.19",
"archiver": "6.0.1",
"autoprefixer": "^10.4.13",
"bun-types": "1.0.8",
"concurrently": "^7.6.0",
"postcss": "^8.4.21",
"prettier": "3.1.0",
"svelte-check": "^3.6.3",
"svelte-preprocess": "^5.1.3",
"tailwindcss": "^3.2.4",
"tsx": "~3.12.2",
"typescript": "^4.9.5",
"vite": "~5.0.10"
},
"dependencies": {
"@mozilla/readability": "~0.4.2",
"@sveltejs/vite-plugin-svelte": "~3.0.1",
"@types/turndown": "~5.0.1",
"@types/webextension-polyfill": "~0.10.0",
"@types/websql": "~0.0.27",
"@vlcn.io/crsqlite-wasm": "0.16.0",
"classnames": "^2.3.2",
"dexie": "~3.2.3",
"lucide-svelte": "0.312.0",
"svelte": "^4.0.0",
"svelte-markdown": "~0.4.1",
"turndown": "https://github.com/iansinnott/turndown",
"webextension-polyfill": "~0.10.0"
}
}