-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·50 lines (50 loc) · 1.45 KB
/
Copy pathpackage.json
File metadata and controls
executable file
·50 lines (50 loc) · 1.45 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": "chrome-extension-template-preact-vite",
"version": "0.0.1",
"description": "Chrome extension template with Preact, Tailwind CSS, Vite and TypeScript preconfigured.",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/fell-lucas/chrome-extension-template-preact-vite.git"
},
"scripts": {
"dev": "vite build --watch",
"build": "vite build",
"typecheck": "tsc --noEmit",
"lint": "eslint .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "vitest run",
"test:watch": "vitest",
"test:cov": "vitest run --coverage",
"verify": "pnpm typecheck && pnpm lint && pnpm format:check && pnpm test && pnpm build"
},
"type": "module",
"engines": {
"node": ">=22.22.2"
},
"packageManager": "pnpm@10.34.5",
"dependencies": {
"preact": "^10.29.8"
},
"devDependencies": {
"@eslint/js": "^9.39.5",
"@preact/preset-vite": "^2.10.6",
"@tailwindcss/vite": "^4.3.3",
"@testing-library/preact": "^3.2.4",
"@types/chrome": "^0.2.5",
"@types/node": "^22.19.21",
"@vitest/coverage-v8": "^4.1.10",
"eslint": "^9.39.5",
"eslint-config-prettier": "^10.1.8",
"globals": "^17.9.0",
"jsdom": "^30.0.1",
"prettier": "^3.9.6",
"prettier-plugin-tailwindcss": "^0.8.1",
"tailwindcss": "^4.3.3",
"typescript": "^5.9.3",
"typescript-eslint": "^8.66.0",
"vite": "^8.2.0",
"vitest": "^4.1.10"
}
}