-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.49 KB
/
package.json
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
63
64
65
66
67
68
69
70
71
72
{
"name": "SurfBoosts",
"description": "Inject CSS and JavaScript into websites to customize appearance and add features. Connect to a marketplace for additional Boosts.",
"private": true,
"version": "0.0.4",
"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": "tsc --noEmit",
"postinstall": "wxt prepare",
"lint": "eslint .",
"format": "prettier --write --log-level silent .",
"test": "vitest",
"test:e2e": "wxt build -m e2e && playwright test",
"pre-commit": "pnpm format && pnpm lint && pnpm compile && pnpm test:e2e",
"packs:build-prod": "pnpm tsx ./packs-builder/builder.ts && prettier --write --log-level silent ./packs-built/",
"packs:build-dev": "pnpm tsx ./packs-builder/builder.ts --dev",
"packs:serve-dev": "pnpm packs:build-dev && pnpm exec serve ./packs-built-dev/ -p 3001"
},
"dependencies": {
"@codemirror/lang-javascript": "^6.2.2",
"@codemirror/lang-less": "^6.0.2",
"@codemirror/language": "^6.10.2",
"@mantine/core": "^7.12.1",
"@mantine/form": "^7.12.1",
"@mantine/hooks": "^7.12.1",
"@paralleldrive/cuid2": "^2.2.2",
"@tabler/icons-react": "^3.12.0",
"@uiw/codemirror-theme-vscode": "^4.23.0",
"@uiw/react-codemirror": "^4.23.0",
"browser-extension-url-match": "^1.2.0",
"es-toolkit": "^1.15.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"zod": "^3.23.8"
},
"devDependencies": {
"@playwright/test": "^1.46.0",
"@testing-library/dom": "^10.4.0",
"@testing-library/react": "^16.0.0",
"@types/chrome": "^0.0.270",
"@types/node": "^20.14.15",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^8.1.0",
"@typescript-eslint/parser": "^8.1.0",
"@wxt-dev/module-react": "^1.1.1",
"autoprefixer": "^10.4.20",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.9",
"jsdom": "^24.1.1",
"postcss": "^8.4.41",
"postcss-preset-mantine": "^1.17.0",
"postcss-simple-vars": "^7.0.1",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.6",
"serve": "^14.2.3",
"tailwindcss": "^3.4.10",
"tsx": "^4.17.0",
"type-fest": "^4.24.0",
"typescript": "^5.5.4",
"vitest": "^1.6.0",
"wxt": "^0.19.5"
}
}