-
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.39 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.39 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": "pevtab",
"version": "0.3.0",
"private": true,
"description": "PostgreSQL Explain Visualizer in a Tab",
"license": "MIT",
"author": "Jason Simeone",
"type": "module",
"scripts": {
"dev": "wxt",
"dev:firefox": "wxt -b firefox",
"build": "wxt build",
"build:firefox": "wxt build -b firefox",
"zip": "wxt zip",
"zip:firefox": "wxt zip -b firefox",
"compile": "vue-tsc --noEmit",
"format": "oxfmt --write .",
"format:check": "oxfmt --check .",
"lint": "oxlint",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:e2e": "pnpm run build && playwright test",
"fullcheck": "pnpm run compile && pnpm run format && pnpm run lint && pnpm run test:coverage",
"postinstall": "wxt prepare"
},
"dependencies": {
"bootstrap": "^5.3.8",
"pev2": "^1.21.0",
"sql-formatter": "^15.7.3",
"uuid": "^13.0.0",
"vue": "^3.5.32"
},
"devDependencies": {
"@playwright/test": "^1.59.1",
"@vitejs/plugin-vue": "^6.0.5",
"@vitest/coverage-v8": "^4.1.2",
"@vue/test-utils": "^2.4.6",
"@wxt-dev/auto-icons": "^1.1.1",
"@wxt-dev/module-vue": "^1.0.3",
"happy-dom": "^20.8.9",
"oxfmt": "^0.43.0",
"oxlint": "^1.58.0",
"typescript": "^6.0.2",
"vitest": "^4.1.2",
"vue-tsc": "^3.2.6",
"wxt": "^0.20.20"
},
"packageManager": "pnpm@10.32.1"
}