-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 814 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 814 Bytes
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
{
"name": "@wolfcola/devtools-extension",
"version": "1.1.1",
"private": true,
"description": "WolfCola DevTools Chrome Extension",
"repository": {
"type": "git",
"url": "https://github.com/ryanbas21/devtools.git",
"directory": "packages/devtools-extension"
},
"license": "MIT",
"type": "module",
"scripts": {
"build": "node --experimental-strip-types build.mjs",
"build:firefox": "node --experimental-strip-types build.mjs --target=firefox",
"lint": "eslint .",
"test": "vitest run"
},
"dependencies": {
"@wolfcola/devtools-core": "workspace:*",
"@wolfcola/devtools-types": "workspace:*",
"@wolfcola/devtools-ui": "workspace:*",
"effect": "catalog:effect"
},
"devDependencies": {
"@types/chrome": "^0.1.40",
"esbuild": "^0.28.0"
}
}