-
-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
62 lines (62 loc) · 1.74 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
{
"name": "@solid-devtools/logger",
"version": "0.9.7",
"description": "Solid debugging utilities for logging the state of the reactivity graph to the console.",
"license": "MIT",
"author": "Damian Tarnawski <[email protected]>",
"contributors": [],
"homepage": "https://github.com/thetarnav/solid-devtools/tree/main/packages/logger#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/thetarnav/solid-devtools.git"
},
"bugs": {
"url": "https://github.com/thetarnav/solid-devtools/issues"
},
"private": false,
"sideEffects": false,
"publishConfig": {
"access": "public"
},
"files": [
"dist"
],
"type": "module",
"main": "./dist/server.cjs",
"module": "./dist/server.js",
"types": "./dist/index.d.ts",
"exports": {
"@solid-devtools/source": "./src/index.ts",
"browser": {
"development": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"import": "./dist/server.js",
"require": "./dist/server.cjs"
},
"development": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"import": "./dist/server.js",
"require": "./dist/server.cjs"
},
"scripts": {},
"dependencies": {
"@nothing-but/utils": "~0.17.0",
"@solid-devtools/debugger": "workspace:^",
"@solid-devtools/shared": "workspace:^",
"@solid-primitives/utils": "^6.2.3"
},
"peerDependencies": {
"solid-js": "^1.9.0"
},
"keywords": [
"solid",
"devtools",
"logger",
"console",
"debugger"
]
}