-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.03 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.03 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
{
"name": "chrome-assistant",
"version": "0.0.0",
"private": true,
"description": "Chrome extension — Another Gmail Assistant",
"license": "MIT",
"type": "module",
"scripts": {
"dev": "npm run dev:gmail",
"dev:gmail": "vite build --watch --config packages/site-gmail/vite.config.ts",
"build": "npm run build:gmail",
"build:gmail": "vite build --config packages/site-gmail/vite.config.ts",
"test": "vitest run",
"test:watch": "vitest",
"lint": "tsc --noEmit",
"package": "node --import tsx/esm scripts/package.ts"
},
"devDependencies": {
"@esbuild/linux-x64": "^0.25.12",
"@types/node": "^25.3.5",
"@vitest/coverage-v8": "^3.2.4",
"chrome-types": "^0.1.327",
"fake-indexeddb": "^6.2.5",
"happy-dom": "^20.8.9",
"jsdom": "^28.1.0",
"jszip": "^3.10.1",
"tsx": "^4.21.0",
"typescript": "^5.7.0",
"vite": "^6.0.0",
"vitest": "^3.0.0"
},
"dependencies": {
"@rollup/rollup-linux-x64-musl": "^4.60.1",
"@rollup/rollup-win32-x64-msvc": "^4.60.1"
}
}