-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
64 lines (64 loc) · 2.57 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "coderr.client",
"version": "v1.2.3",
"description": "Automated error handling and analytics. Report errors by manually or by automation and let Coderr analyze and prioritize them.",
"repository": {
"type": "git",
"url": "git+https://github.com/coderrio/coderr.client.js.git"
},
"author": "Coderr AB <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/coderrio/coderr.client.js/issues"
},
"main": "./dist/index.js",
"browser": "./dist/browser.js",
"types": "./dist/tsc/index.d.ts",
"scripts": {
"build-dts": "tsc --emitDeclarationOnly --declaration -p tsconfig.json",
"build": "npm run build-dts && npm run build-node && npm run build-browser",
"build:dev": "npm run build-dts && npm run build-node:dev && npm run build-browser:dev",
"clean": "rmdir /s /q dist && rmdir /s /q build && rmdir /s /q package",
"build-browser": "esbuild src/browser.ts --bundle --minify --sourcemap=external --outfile=dist/browser.js --target=chrome58,firefox57,safari11,edge16 --format=esm",
"build-browser:dev": "esbuild src/browser.ts --bundle --sourcemap=external --outfile=dist/browser.js --target=chrome58,firefox57,safari11,edge16 --format=esm",
"build-node": "esbuild src/index.ts --bundle --platform=node --minify --sourcemap=external --outfile=dist/index.js",
"build-node:dev": "esbuild src/index.ts --bundle --platform=node --sourcemap=external --outfile=dist/index.js",
"build-node:watch": "esbuild src/index.ts --bundle --platform=node --watch --sourcemap=external --outfile=dist/index.js",
"test": "jest --config jest.config.js",
"test:watch": "jest --watchAll",
"docs": "typedoc --entryPoints src/index.ts --out docs src",
"lint": "eslint src/**",
"lint:fix": "eslint './src/**/*.{ts}'",
"format": "prettier --write \"src/**/*.ts\""
},
"keywords": [
"errors",
"error-handling",
"logs",
"diagnostics",
"debugging"
],
"devDependencies": {
"@babel/preset-typescript": "^7.16.7",
"@types/jest": "^27.4.0",
"@types/jsdom": "^16.2.14",
"@types/node": "^17.0.8",
"@types/ua-parser-js": "^0.7.36",
"@typescript-eslint/typescript-estree": "^5.10.2",
"@typescript-eslint/eslint-plugin": "^4.19.0",
"@typescript-eslint/parser": "^4.19.0",
"esbuild": "^0.14.11",
"eslint": "^7.32.0",
"jest": "^27.4.7",
"jsdom": "^19.0.0",
"prettier": "^2.5.1",
"ts-jest": "^27.1.3",
"ts-node": "^10.4.0",
"typedoc": "^0.22.10",
"typescript": "^4.5.4"
},
"dependencies": {
"marked": "^4.0.10",
"ua-parser-js": "^1.0.2"
}
}