-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.37 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.37 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
42
43
44
45
46
47
48
49
50
{
"name": "gridpluck",
"version": "1.0.2",
"private": true,
"description": "A free, local-first Chrome extension for extracting visible web tables.",
"type": "module",
"author": "Devashish Shrivastava",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/devashishPM/GridPluck.git"
},
"bugs": {
"url": "https://github.com/devashishPM/GridPluck/issues"
},
"homepage": "https://github.com/devashishPM/GridPluck#readme",
"keywords": [
"chrome-extension",
"table-extractor",
"csv",
"markdown",
"local-first"
],
"scripts": {
"dev": "vite build --watch",
"typecheck": "tsc --noEmit --pretty false",
"lint": "eslint .",
"test": "vitest run",
"test:watch": "vitest",
"brand:check": "node scripts/check-brand.mjs",
"build": "tsc --noEmit && vite build && node scripts/validate-build.mjs",
"check": "npm run brand:check && npm run lint && npm run test && npm run build",
"package": "npm run build && node scripts/package.mjs"
},
"devDependencies": {
"@eslint/js": "^10.0.0",
"@types/chrome": "^0.1.37",
"@types/node": "^24.3.0",
"eslint": "^10.10.0",
"globals": "^17.12.0",
"happy-dom": "^20.14.0",
"typescript": "^5.9.2",
"typescript-eslint": "^8.69.0",
"vite": "^8.2.2",
"vitest": "^4.1.11"
},
"engines": {
"node": ">=20.19"
}
}