-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 831 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 831 Bytes
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
{
"name": "claritylens",
"version": "1.0.0",
"description": "Chrome extension leveraging Built-in AI APIs for on-device summarization, rewriting, translation, and more",
"type": "module",
"scripts": {
"dev": "vite build --watch --mode development",
"build": "tsc && vite build",
"watch": "vite build --watch",
"zip": "node scripts/zip.mjs",
"clean": "rimraf dist"
},
"keywords": [
"chrome-extension",
"ai",
"accessibility",
"summarization",
"translation"
],
"author": "ClarityLens Team",
"license": "MIT",
"devDependencies": {
"@types/chrome": "^0.0.268",
"@types/node": "^20.12.7",
"archiver": "^7.0.1",
"rimraf": "^5.0.5",
"typescript": "^5.4.5",
"vite": "^5.2.10",
"vite-plugin-static-copy": "^1.0.4"
}
}