-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.11 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.11 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
{
"name": "zero-tab",
"version": "1.4.0",
"description": "A local-first personal workstation for Chrome.",
"private": true,
"engines": {
"node": ">=20"
},
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"test": "TZ=UTC node --test tests/*.test.js tests/*.test.mjs && TZ=UTC vitest run",
"typecheck": "tsc -b",
"generate:builder-feeds": "node scripts/generate-builder-feeds.mjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/beforeload/zero-tab.git"
},
"keywords": [
"chrome-extension",
"tabs",
"workstation"
],
"license": "MIT",
"type": "module",
"bugs": {
"url": "https://github.com/beforeload/zero-tab/issues"
},
"homepage": "https://github.com/beforeload/zero-tab#readme",
"dependencies": {
"react": "^19.2.8",
"react-dom": "^19.2.8"
},
"devDependencies": {
"@types/chrome": "^0.2.5",
"@types/node": "^26.2.0",
"@types/react": "^19.2.18",
"@types/react-dom": "^19.2.4",
"@vitejs/plugin-react": "^6.0.5",
"typescript": "^7.0.2",
"vite": "^8.2.1",
"vitest": "^4.1.10"
}
}