-
-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.56 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.56 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": "browser-extension",
"private": true,
"version": "2.7.4",
"description": "Alpine.js devtools with Chrome manifest v3 compatibility",
"type": "module",
"scripts": {
"start": "pnpm esbuild && NODE_ENV=dev vite",
"start:main": "VITE_MAINLINE_PUBLISH=true pnpm start",
"dev": "pnpm esbuild && NODE_ENV=dev vite build",
"dev:firefox": "TARGET=firefox pnpm esbuild && NODE_ENV=dev vite build",
"dev:main": "VITE_MAINLINE_PUBLISH=true pnpm dev",
"build": "NODE_ENV=production pnpm esbuild && vite build",
"postbuild": "node postbuild.js",
"test": "node --experimental-strip-types --test **/*.test.ts",
"typecheck": "tsgo --noEmit",
"format": "prettier -w .",
"esbuild": "node build.js && prettier -w manifest.json",
"serve": "vite preview",
"cy:run": "cypress run",
"cy:open": "cypress open --e2e --browser=electron",
"jules-test": "start-server-and-test start http://localhost:3000 cy:run"
},
"license": "MIT",
"devDependencies": {
"@types/chrome": "0.1.6",
"@types/node": "24.3.1",
"@typescript/native-preview": "7.0.0-dev.20250904.1",
"cypress": "15.1.0",
"cypress-iframe": "1.0.1",
"esbuild": "0.28.1",
"linkedom": "0.18.12",
"msw": "^2.0.0",
"start-server-and-test": "^2.0.13",
"vite": "^7.1.4",
"vite-plugin-solid": "^2.11.6"
},
"dependencies": {
"@tailwindcss/vite": "4.1.13",
"basecoat-css": "0.3.2",
"solid-js": "^1.9.5",
"split-grid": "^1.0.11",
"tailwindcss": "4.1.3"
},
"msw": {
"workerDirectory": [
"assets"
]
}
}