forked from microsoft/clarity
-
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) · 778 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 778 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": "clarity",
"private": true,
"version": "0.7.20",
"repository": "https://github.com/microsoft/clarity.git",
"author": "Sarvesh Nagpal <sarveshn@microsoft.com>",
"license": "MIT",
"workspaces": {
"packages": [
"packages/*"
]
},
"scripts": {
"version": "npx lerna version",
"build": "npx lerna run build --stream",
"build:js": "yarn workspace clarity-js build",
"build:decode": "yarn workspace clarity-decode build",
"build:visualize": "yarn workspace clarity-visualize build",
"build:devtools": "yarn workspace clarity-devtools build",
"test": "yarn workspace clarity-js test"
},
"devDependencies": {
"lerna": "^6.4.1",
"parse-url": "^8.1.0"
},
"resolutions": {
"parse-url": "^8.1.0"
}
}