-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.11 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 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
{
"name": "fillwright",
"version": "0.1.0",
"description": "Local-first, multi-step form autofiller powered by Gemini Nano",
"type": "module",
"scripts": {
"dev": "vite",
"dev:ext": "vite build --watch --config vite.config.ext.ts",
"build": "tsc && vite build",
"build:ext": "tsc && vite build --config vite.config.ext.ts",
"lint": "eslint src --ext .ts,.tsx && node scripts/no-emdash.mjs",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"e2e": "playwright test"
},
"keywords": [
"form-autofill",
"gemini-nano",
"chrome-extension",
"webmcp",
"privacy-first"
],
"author": "YASSERRMD <arafath.yasser@gmail.com>",
"license": "MIT",
"devDependencies": {
"@eslint/js": "^10.0.1",
"@playwright/test": "^1.50.0",
"@types/chrome": "^0.2.2",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"eslint": "^9.0.0",
"jsdom": "^29.1.1",
"prettier": "^3.0.0",
"typescript": "^5.5.0",
"typescript-eslint": "^8.63.0",
"vite": "^6.0.0",
"vitest": "^3.0.0"
}
}