-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.1 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.1 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
{
"name": "chatveil",
"version": "0.1.0",
"private": true,
"type": "module",
"description": "Privacy masking for chatbot conversation history titles as a Chrome MV3 extension and Tampermonkey userscript.",
"scripts": {
"dev": "wxt",
"prepare:wxt": "wxt prepare",
"lint": "eslint .",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:smoke": "node scripts/smoke-playwright.mjs",
"build:extension": "wxt zip",
"build:userscript": "vite build --config vite.userscript.config.ts",
"build": "npm run build:extension && npm run build:userscript",
"generate:icons": "node scripts/generate-icons.mjs"
},
"keywords": [
"chrome-extension",
"privacy",
"chatgpt",
"claude",
"qwen",
"userscript"
],
"license": "MIT",
"devDependencies": {
"@eslint/js": "^9.0.0",
"@playwright/test": "^1.60.0",
"@types/chrome": "^0.1.42",
"@types/node": "^24.0.0",
"eslint": "^9.0.0",
"jsdom": "^27.0.0",
"typescript": "^6.0.0",
"typescript-eslint": "^8.0.0",
"vite": "^8.0.0",
"vitest": "^4.0.0",
"wxt": "^0.20.26"
}
}