-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.18 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
{
"name": "@dreamkit/solid",
"version": "0.0.8",
"description": "DreamKit tools for Solid.",
"keywords": [
"solid",
"solidjs",
"controlled",
"input",
"components"
],
"homepage": "https://dreamkit.dev",
"repository": {
"type": "git",
"url": "https://github.com/swordev/dreamkit/tree/main/packages/solid"
},
"license": "MIT",
"author": "Juanra GM",
"contributors": [
{
"name": "Juanra GM",
"email": "[email protected]",
"url": "https://github.com/juanrgm"
}
],
"sideEffects": false,
"type": "module",
"exports": {
".": "./lib/index.js",
"./*": "./lib/*"
},
"files": [
"lib"
],
"dependencies": {
"@dreamkit/app": "workspace:*",
"@dreamkit/schema": "workspace:*",
"@dreamkit/utils": "workspace:*"
},
"devDependencies": {
"@dreamkit/tsconfig": "workspace:*",
"@solidjs/meta": "^0.29.4",
"@solidjs/router": "^0.15.1",
"@solidjs/start": "^1.0.10",
"solid-js": "^1.9.3"
},
"peerDependencies": {
"@solidjs/meta": "^0.29.0",
"@solidjs/router": "^0.15.0",
"@solidjs/start": "^1.0.10",
"solid-js": "^1.9.0"
},
"x-dreamkit": {
"profile": "lib"
}
}