-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 924 Bytes
/
package.json
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
{
"name": "hotjar-loader",
"description": "Async loader for the hotjar api (browser, typescript)",
"version": "0.0.2",
"author": "Aubrey Holland <aubrey@withgrayce.com>",
"keywords": [
"hotjar",
"asynchronous",
"async",
"loader",
"browser",
"tracking",
"analytics"
],
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/withgrayce/hotjar-loader.git"
},
"license": "MIT",
"main": "./lib/cjs/index.js",
"types": "./lib/types/index.d.ts",
"module": "./lib/esm/index.js",
"sideEffects": false,
"devDependencies": {
"@types/node": "^16.0.1",
"typescript": "^4.3.5"
},
"scripts": {
"build": "tsc -p tsconfig.json && tsc -p tsconfig.cjs.json"
},
"bugs": {
"url": "https://github.com/withgrayce/hotjar-loader/issues"
},
"homepage": "https://github.com/withgrayce/hotjar-loader#readme",
"directories": {
"lib": "lib"
}
}