-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.51 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
63
64
65
66
{
"name": "@dreamkit/dev",
"version": "0.0.13",
"description": "Development tools for DreamKit.",
"homepage": "https://dreamkit.dev",
"repository": {
"type": "git",
"url": "https://github.com/swordev/dreamkit/tree/main/packages/dev"
},
"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",
"./bin": "./lib/bin.js"
},
"bin": {
"dk": "./lib/bin.js",
"dreamkit": "./lib/bin.js"
},
"files": [
"assets",
"lib"
],
"dependencies": {
"@babel/generator": "^7.26.2",
"@babel/parser": "^7.26.2",
"@babel/traverse": "^7.25.9",
"@babel/types": "^7.26.0",
"@dreamkit/app": "workspace:*",
"@dreamkit/schema": "workspace:*",
"@types/babel__generator": "^7.6.8",
"@types/babel__traverse": "^7.20.6",
"commander": "^12.1.0",
"debug": "^4.3.7",
"es-module-lexer": "^1.5.4",
"esbuild": "^0.24.0",
"glob": "^11.0.0",
"rollup": "^4.26.0",
"vite-plugin-solid": "^2.10.2",
"vite-tsconfig-paths": "^5.1.2"
},
"devDependencies": {
"@dreamkit/tsconfig": "workspace:*",
"@types/debug": "^4.1.12",
"@types/node": "^22.9.0",
"vinxi": "^0.4.3",
"vite": "^5.4.11"
},
"peerDependencies": {
"@types/node": "^22.7.7",
"vinxi": "^0.4.3",
"vite": "^5.4.8"
},
"x-dreamkit": {
"profile": "lib"
}
}