-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.21 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.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
{
"name": "@wolfcola/devtools-bridge",
"version": "1.1.1",
"description": "Opt-in SDK adapter that emits AuthEvents to the WolfCola DevTools extension",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ryanbas21/devtools.git",
"directory": "packages/devtools-bridge"
},
"publishConfig": {
"access": "public"
},
"sideEffects": false,
"type": "module",
"exports": {
".": {
"types": "./dist/src/index.d.ts",
"import": "./dist/src/index.js",
"default": "./dist/src/index.js"
},
"./package.json": "./package.json"
},
"main": "./dist/src/index.js",
"module": "./dist/src/index.js",
"types": "./dist/src/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc -p tsconfig.lib.json",
"lint": "eslint .",
"test": "vitest run"
},
"dependencies": {
"@wolfcola/devtools-core": "workspace:*",
"@wolfcola/devtools-types": "workspace:*",
"effect": "catalog:effect"
},
"peerDependencies": {
"@forgerock/davinci-client": "*"
},
"peerDependenciesMeta": {
"@forgerock/davinci-client": {
"optional": true
}
},
"devDependencies": {
"@types/ws": "^8.18.1",
"ws": "^8.20.0"
}
}