-
-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
33 lines (33 loc) · 1.12 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
{
"name": "@solid-devtools/extension",
"version": "0.33.0",
"private": true,
"license": "MIT",
"author": "Damian Tarnawski <gthetarnav@gmail.com>",
"type": "module",
"scripts": {
"dev": "node --experimental-transform-types ./build.ts --watch",
"build:chrome": "node --experimental-transform-types ./build.ts chrome",
"build:firefox": "node --experimental-transform-types ./build.ts firefox",
"build": "node --experimental-transform-types ./build.ts",
"test:unit": "echo \"No unit tests\"",
"test:types": "tsc --noEmit --paths null",
"firefox-run": "pnpx web-ext run -s dist/firefox -p dev"
},
"devDependencies": {
"@crxjs/vite-plugin": "2.0.0-beta.28",
"@types/chrome": "^0.0.287"
},
"dependencies": {
"@solid-devtools/debugger": "workspace:^",
"@solid-devtools/frontend": "workspace:^",
"@solid-devtools/shared": "workspace:^",
"solid-devtools": "workspace:^"
},
"overrides": {
"@crxjs/vite-plugin": {
"vite": "^6"
}
},
"packageManager": "pnpm@9.14.4"
}