-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 893 Bytes
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 893 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
32
33
34
{
"name": "smart-form-filler",
"version": "2.0.0",
"description": "Smart Form Filler - AI-powered browser extension for intelligent data extraction and form filling",
"scripts": {
"install:backend": "cd backend && npm install",
"install:all": "npm run install:backend",
"dev:backend": "cd backend && npm run dev",
"start:backend": "cd backend && npm start",
"build:extension": "echo 'Extension build completed'",
"build:pages": "echo 'GitHub Pages updated via docs folder'",
"dev": "npm run dev:backend"
},
"repository": {
"type": "git",
"url": ""
},
"keywords": [
"browser-extension",
"form-filler",
"data-extraction",
"ai-powered",
"chrome-extension",
"edge-extension"
],
"author": "",
"license": "ISC",
"devDependencies": {
"npm-run-all": "^4.1.5"
},
"dependencies": {
"sharp": "^0.34.2"
}
}