-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 856 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 856 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
{
"name": "@equalizer/extension",
"version": "1.0.0",
"description": "Google Chrome extension and related tools for Equalizer.dev",
"repository": "https://github.com/eqrdev/extension.git",
"author": "Péter Viola <info@violapeter.hu>",
"license": "MIT",
"private": true,
"packageManager": "yarn@4.0.2",
"workspaces": [
"modules/*",
"docs"
],
"scripts": {
"build": "yarn workspaces foreach -A run build",
"dev": "yarn workspace chrome run dev",
"test": "yarn workspaces foreach -A run test",
"type-check": "yarn workspaces foreach -A run type-check",
"lint": "yarn workspace eslint run lint",
"ui-sb": "yarn workspace ui-library run storybook",
"serve": "yarn workspace auto-connect run start",
"docs": "yarn workspace docs dev"
},
"volta": {
"node": "21.1.0",
"yarn": "4.0.2"
}
}