-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.6 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.6 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
51
52
53
54
55
56
57
58
59
60
{
"name": "avemo-dev-plugin",
"displayName": "Avemo Dev",
"private": true,
"version": "0.1.0",
"type": "module",
"packageManager": "pnpm@10.13.1",
"description": "Avemo Dev — a Figma-style grid & layout debugging overlay for the browser, styled like the avemo apps.",
"license": "MIT",
"author": "Philipp Gerger",
"homepage": "https://github.com/philippgerger/avemo-dev-plugin#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/philippgerger/avemo-dev-plugin.git"
},
"bugs": {
"url": "https://github.com/philippgerger/avemo-dev-plugin/issues"
},
"keywords": [
"chrome-extension",
"manifest-v3",
"grid-overlay",
"design-tools",
"css-inspector",
"layout-debugging",
"vue",
"vite",
"figma"
],
"scripts": {
"dev": "vite",
"build": "vue-tsc --noEmit && vite build",
"build:only": "vite build",
"preview": "vite preview",
"icons": "node scripts/gen-icons.mjs",
"type-check": "vue-tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"e2e": "playwright test",
"e2e:build": "vite build && playwright test",
"e2e:install": "playwright install chromium"
},
"dependencies": {
"lucide-vue-next": "^0.469.0",
"pinia": "^2.3.0",
"vue": "^3.5.13"
},
"devDependencies": {
"@crxjs/vite-plugin": "^2.0.0-beta.36",
"@playwright/test": "^1.49.1",
"@types/chrome": "^0.0.287",
"@vitejs/plugin-vue": "^5.2.1",
"happy-dom": "^15.11.7",
"sharp": "^0.33.5",
"typescript": "^5.7.2",
"vite": "^5.4.11",
"vitest": "^2.1.9",
"vue-tsc": "^2.1.10"
}
}