-
Notifications
You must be signed in to change notification settings - Fork 268
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.47 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.47 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
51
52
53
54
55
56
57
58
59
60
{
"name": "clarity-devtools",
"version": "0.8.58-beta",
"private": true,
"description": "Adds Clarity debugging support to browser devtools",
"author": "Microsoft Corp.",
"license": "MIT",
"keywords": [
"clarity",
"Microsoft",
"interactions",
"cursor",
"pointer",
"instrumentation",
"analytics",
"decode"
],
"repository": {
"type": "git",
"url": "https://github.com/Microsoft/clarity.git",
"directory": "packages/clarity-devtools"
},
"bugs": {
"url": "https://github.com/Microsoft/clarity/issues"
},
"dependencies": {
"clarity-decode": "^0.8.58-beta",
"clarity-js": "^0.8.58-beta",
"clarity-visualize": "^0.8.58-beta"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.0.0",
"@rollup/plugin-terser": "^0.4.0",
"@rollup/plugin-typescript": "^11.0.0",
"@types/chrome": "^0.0.280",
"del-cli": "^5.0.0",
"lint-staged": "^13.1.0",
"rollup": "^3.0.0",
"rollup-plugin-copy": "^3.3.0",
"tslint": "^6.1.3",
"typescript": "^4.3.5"
},
"scripts": {
"build": "yarn build:clean && yarn build:main",
"build:main": "rollup -c rollup.config.ts --configPlugin @rollup/plugin-typescript",
"build:clean": "del-cli extension/*",
"tslint": "tslint --project ./",
"tslint:fix": "tslint --fix --project ./ --force"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.ts": [
"tslint --format codeFrame"
]
}
}