-
Notifications
You must be signed in to change notification settings - Fork 268
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.62 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.62 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
61
62
{
"name": "clarity-visualize",
"version": "0.8.58-beta",
"description": "An analytics library that uses web page interactions to generate aggregated insights",
"author": "Microsoft Corp.",
"license": "MIT",
"main": "build/clarity.visualize.js",
"module": "build/clarity.visualize.module.js",
"unpkg": "build/clarity.visualize.min.js",
"types": "types/index.d.ts",
"keywords": [
"clarity",
"Microsoft",
"interactions",
"cursor",
"pointer",
"instrumentation",
"analytics",
"visualization"
],
"repository": {
"type": "git",
"url": "https://github.com/microsoft/clarity.git",
"directory": "packages/clarity-visualize"
},
"bugs": {
"url": "https://github.com/Microsoft/clarity/issues"
},
"dependencies": {
"clarity-decode": "^0.8.58-beta"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^24.0.0",
"@rollup/plugin-node-resolve": "^15.0.0",
"@rollup/plugin-terser": "^0.4.0",
"@rollup/plugin-typescript": "^11.0.0",
"rollup-plugin-string-import": "^1.2.5",
"del-cli": "^5.0.0",
"husky": "^8.0.0",
"lint-staged": "^13.1.0",
"rollup": "^3.0.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 build/*",
"tslint": "tslint --project ./",
"tslint:fix": "tslint --fix --project ./ --force"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.ts": [
"tslint --format codeFrame"
]
}
}