-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 1.83 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 1.83 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
{
"name": "@forinda/kickjs-devtools",
"version": "7.1.1",
"description": "Development introspection dashboard for KickJS — routes, DI container, metrics, health",
"keywords": [
"kickjs",
"nodejs",
"typescript",
"decorator-driven",
"devtools",
"debug-dashboard",
"introspection",
"routes-inspector",
"di-inspector",
"health-check",
"metrics"
],
"type": "module",
"main": "dist/index.mjs",
"types": "dist/index.d.mts",
"exports": {
".": {
"import": "./dist/index.mjs",
"types": "./dist/index.d.mts"
}
},
"files": [
"dist",
"public"
],
"scripts": {
"build": "tsdown",
"build:spa": "vite build --config spa/vite.config.ts spa",
"dev": "tsdown --watch",
"dev:spa": "vite spa",
"test": "vitest run --passWithNoTests",
"typecheck": "tsc --noEmit",
"clean": "rm -rf dist .wireit"
},
"dependencies": {
"@forinda/kickjs-devtools-kit": "workspace:*",
"reflect-metadata": "^0.2.2"
},
"peerDependencies": {
"express": "^5.1.0",
"ws": "^8.0.0",
"@forinda/kickjs": ">=5.18.0"
},
"devDependencies": {
"@forinda/kickjs": "workspace:*",
"@types/express": "^5.0.6",
"@types/node": "^26.1.2",
"@types/ws": "^8.18.0",
"express": "^5.1.0",
"solid-js": "^1.9.14",
"typescript": "^7.0.2",
"vite": "^8.2.0",
"vite-plugin-solid": "^2.11.14",
"vitest": "^4.1.10",
"ws": "^8.21.2"
},
"publishConfig": {
"access": "public"
},
"license": "MIT",
"author": "Felix Orinda",
"engines": {
"node": ">=20.0"
},
"homepage": "https://kickjs.app/",
"repository": {
"type": "git",
"url": "https://github.com/forinda/kick-js.git",
"directory": "packages/devtools"
},
"bugs": {
"url": "https://github.com/forinda/kick-js/issues"
},
"peerDependenciesMeta": {}
}