-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.17 KB
/
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
39
40
41
42
43
44
45
46
47
{
"name": "@log-rush/client",
"version": "1.1.1",
"description": "A log-rush client for javascript",
"repository": "github:log-rush/javascript-client",
"author": "Fabian Kachlock <[email protected]>",
"license": "MIT",
"main": "dist/node/index.js",
"browser": "dist/browser/index.js",
"types": "dist/browser/index.d.ts",
"files": [
"dist/**"
],
"engines": {
"yarn": ">=1.22 <2"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rm -rf dist && tsc -p tsconfig.node.json && tsc -p tsconfig.browser.json",
"build:browser": "tsc -p tsconfig.browser.json",
"build:node": "tsc -p tsconfig.node.json",
"format": "prettier --write \"src/**/*.ts\"",
"prepare": "husky install"
},
"lint-staged": {
"*.{ts,js,json}": [
"yarn format"
]
},
"keywords": [
"log-rush",
"logging",
"logs",
"remote-logging"
],
"devDependencies": {
"@types/isomorphic-fetch": "^0.0.36",
"@types/node": "^17.0.31",
"husky": "^7.0.4",
"lint-staged": "^12.4.1",
"prettier": "^2.6.2",
"typescript": "^4.6.4"
},
"dependencies": {
"isomorphic-fetch": "^3.0.0"
}
}