-
-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpackage.json
55 lines (55 loc) · 1.67 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
{
"name": "@exceptionless/react",
"version": "2.0.0-dev",
"description": "JavaScript client for Exceptionless",
"author": {
"name": "exceptionless",
"url": "https://exceptionless.com"
},
"keywords": [
"exceptionless",
"error",
"feature",
"logging",
"tracking",
"reporting",
"react"
],
"repository": {
"url": "git://github.com/exceptionless/Exceptionless.JavaScript.git",
"type": "git"
},
"bugs": {
"url": "https://github.com/exceptionless/Exceptionless.JavaScript/issues"
},
"license": "Apache-2.0",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"unpkg": "dist/index.bundle.min.js",
"jsdelivr": "dist/index.bundle.min.js",
"exports": {
".": "./dist/index.js",
"./package.json": "./package.json"
},
"scripts": {
"build": "tsc -p tsconfig.json && esbuild src/index.ts --bundle --sourcemap --target=es2021 --format=esm --outfile=dist/index.bundle.js && esbuild src/index.ts --bundle --minify --sourcemap --target=es2021 --format=esm --outfile=dist/index.bundle.min.js",
"watch": "tsc -p ../core/tsconfig.json -w --preserveWatchOutput & tsc -p tsconfig.json -w --preserveWatchOutput & esbuild src/index.ts --bundle --sourcemap --target=es2021 --format=esm --watch --outfile=dist/index.bundle.js"
},
"sideEffects": false,
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@jest/globals": "^29.4.3",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"esbuild": "^0.17.10",
"jest": "^29.4.3",
"jest-ts-webcompat-resolver": "^1.0.0",
"ts-jest": "^29.0.5"
},
"dependencies": {
"@exceptionless/browser": "2.0.0-dev"
}
}