-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.88 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.88 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
55
{
"name": "tabvault",
"version": "0.1.0",
"description": "Stash and restore your browser tabs. A fast, private, Manifest V3 tab manager.",
"license": "MIT",
"author": "snoopysecurity",
"homepage": "https://github.com/tabvault/tabvault",
"repository": {
"type": "git",
"url": "https://github.com/tabvault/tabvault.git"
},
"bugs": {
"url": "https://github.com/tabvault/tabvault/issues"
},
"type": "module",
"scripts": {
"dev": "vite",
"dev:firefox": "cross-env TARGET=firefox vite",
"clean:chrome": "node -e \"require('fs').rmSync('dist-chrome',{recursive:true,force:true})\"",
"clean:firefox": "node -e \"require('fs').rmSync('dist-firefox',{recursive:true,force:true})\"",
"build": "npm run typecheck && npm run clean:chrome && vite build",
"build:firefox": "npm run typecheck && npm run clean:firefox && cross-env TARGET=firefox vite build",
"build:all": "npm run build && npm run build:firefox",
"preview": "vite preview",
"typecheck": "svelte-check --tsconfig ./tsconfig.json",
"lint": "eslint . --ext .ts,.svelte",
"format": "prettier --write \"src/**/*.{ts,svelte,css}\"",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"webextension-polyfill": "^0.12.0"
},
"devDependencies": {
"@crxjs/vite-plugin": "^2.0.0-beta.28",
"@eslint/js": "^9.15.0",
"@sveltejs/vite-plugin-svelte": "^7.2.0",
"@tsconfig/svelte": "^5.0.4",
"@types/chrome": "^0.0.287",
"@types/node": "^22.20.0",
"@types/webextension-polyfill": "^0.12.1",
"cross-env": "^7.0.3",
"eslint": "^9.15.0",
"eslint-plugin-svelte": "^2.46.0",
"globals": "^15.15.0",
"prettier": "^3.4.1",
"prettier-plugin-svelte": "^3.3.2",
"svelte": "^5.2.0",
"svelte-check": "^4.1.0",
"typescript": "^5.7.2",
"typescript-eslint": "^8.16.0",
"vite": "^8.1.3",
"vitest": "^4.1.10"
}
}