-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.58 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.58 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
61
62
{
"name": "enhancer",
"module": "src/content/index.ts",
"type": "module",
"version": "5.1.33",
"homepage": "https://enhancer.at",
"author": {
"name": "Enhancer",
"email": "contact@enhancer.at",
"url": "https://x.com/enhancerapp"
},
"bugs": {
"url": "https://github.com/enhancer-app/enhancer/issues",
"email": "contact@enhancer.at"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@preact/preset-vite": "^2.10.3",
"@types/bun": "^1.3.8",
"@types/chrome": "^0.0.262",
"@types/signale": "^1.4.7",
"@types/styled-components": "^5.1.36",
"bun-types": "^1.3.8",
"concurrently": "^9.2.1",
"husky": "^9.1.7",
"jszip": "^3.10.1",
"lint-staged": "^16.2.7",
"vite": "^7.3.1",
"vite-plugin-generate-file": "^0.3.1",
"vite-tsconfig-paths": "^5.1.4"
},
"peerDependencies": {
"typescript": "^5.8.3"
},
"dependencies": {
"@preact/compat": "^18.3.1",
"@preact/signals": "^2.6.2",
"graphql-tag": "^2.12.6",
"nanoevents": "^9.1.0",
"preact": "^10.28.3",
"preact-hooks": "^0.0.0-0.0.0",
"styled-components": "^6.3.8"
},
"scripts": {
"typecheck": "tsc --noEmit",
"typecheck:watch": "tsc --noEmit --watch",
"biome:ci": "biome ci ./src",
"dev": "ENVIRONMENT=development concurrently \"bun run typecheck:watch\" \"vite build --watch\" \"vite\"",
"build": "ENVIRONMENT=production bun run biome:ci && bun run typecheck && vite build",
"pack": "ENVIRONMENT=production bun run scripts/pack.ts",
"prepare": "husky"
},
"lint-staged": {
"./src/**/*.{js,ts,tsx}": [
"biome check --write"
]
},
"trustedDependencies": [
"@biomejs/biome",
"esbuild"
]
}