-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.21 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.21 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "@highlight-run/next",
"version": "7.9.26",
"description": "Client for interfacing with Highlight in next.js",
"repository": {
"type": "git",
"url": "https://github.com/launchdarkly/observability-sdk.git"
},
"files": [
"dist",
"client.d.ts",
"config.d.ts",
"server.d.ts",
"ssr.d.ts",
"types.d.ts"
],
"exports": {
"./server": {
"types": "./dist/server.d.ts",
"edge": "./dist/server.edge.js",
"edge-light": "./dist/server.edge.js",
"worker": "./dist/server.edge.js",
"workerd": "./dist/server.edge.js",
"require": "./dist/server.cjs",
"import": "./dist/server.js"
},
"./client": {
"types": "./dist/next-client.d.ts",
"import": "./dist/next-client.js",
"require": "./dist/next-client.cjs"
},
"./config": {
"types": "./dist/config.d.ts",
"import": "./dist/config.js",
"require": "./dist/config.cjs"
},
"./ssr": {
"types": "./dist/ssr.d.ts",
"import": "./dist/ssr.js",
"require": "./dist/ssr.cjs"
}
},
"type": "module",
"publishConfig": {
"access": "public"
},
"scripts": {
"typegen": "tsc -d --emitDeclarationOnly",
"dev": "rm -rf .next && yarn watch:build & yarn build --watch",
"watch:build": "chokidar \"dist/next-client.d.ts\" -c \"sh ./bin/clean-dist.sh\"",
"build": "rollup --config rollup.config.js && sh bin/clean-dist.sh",
"test": "vitest run",
"test:dev": "vitest"
},
"author": "",
"license": "Apache-2.0",
"peerDependencies": {
"next": ">=13",
"react": ">=17"
},
"dependencies": {
"@highlight-run/cloudflare": "workspace:*",
"@highlight-run/node": "workspace:*",
"@highlight-run/react": "workspace:*",
"@highlight-run/sourcemap-uploader": "workspace:*",
"highlight.run": "workspace:*",
"js-cookie": "^3.0.5",
"next": ">=13"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20231016.0",
"@opentelemetry/api": "^1.9.0",
"@opentelemetry/resources": "^1.30.1",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.5",
"@trpc/server": "^9.27.4",
"@types/js-cookie": "^3",
"@types/node": "^16.18.113",
"chokidar-cli": "^3.0.0",
"eslint": "8.39.0",
"rollup": "^4.4.1",
"semver": "^7.6.3",
"tree-kill": "^1.2.2",
"typescript": "^5.0.4",
"vitest": "^2.1.3"
}
}