-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 3.21 KB
/
Copy pathpackage.json
File metadata and controls
109 lines (109 loc) · 3.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
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "adonis-debugbar",
"version": "1.1.1",
"description": "Per-request debug bar for AdonisJS: timing, SQL queries, route info, session, views, messages, exceptions and timeline markers. Works with any frontend stack.",
"type": "module",
"author": "Syed Abdullah <2syedabdullah@gmail.com>",
"license": "AGPL-3.0-only",
"repository": {
"type": "git",
"url": "https://github.com/imsyedabdullah/adonis-debugbar.git"
},
"homepage": "https://github.com/imsyedabdullah/adonis-debugbar#readme",
"bugs": {
"url": "https://github.com/imsyedabdullah/adonis-debugbar/issues"
},
"main": "./build/index.js",
"types": "./build/index.d.ts",
"exports": {
".": {
"import": "./build/index.js",
"types": "./build/index.d.ts"
},
"./middleware": {
"import": "./build/middleware.js",
"types": "./build/middleware.d.ts"
},
"./provider": {
"import": "./build/provider.js",
"types": "./build/provider.d.ts"
}
},
"files": [
"build",
"public",
"COPYING",
"SECURITY.md",
"README.md",
"LICENSE"
],
"scripts": {
"build": "npm-run-all --parallel build:ui build:src",
"build:src": "tsc --project tsconfig.json",
"build:ui": "esbuild ui/main.ts --bundle --format=iife --platform=browser --outfile=public/debugbar.js --alias:react=preact/compat --alias:react-dom=preact/compat --jsx=automatic --jsx-import-source=preact --minify",
"dev": "npm-run-all --parallel dev:ui dev:src",
"dev:src": "tsc --project tsconfig.json --watch",
"dev:ui": "esbuild ui/main.ts --bundle --format=iife --platform=browser --outfile=public/debugbar.js --alias:react=preact/compat --alias:react-dom=preact/compat --jsx=automatic --jsx-import-source=preact --sourcemap --watch",
"prepublishOnly": "npm-run-all build lint typecheck test:unit",
"typecheck": "tsc --noEmit && tsc --noEmit --project tsconfig.ui.json",
"format": "eslint src ui --fix",
"lint": "eslint src ui",
"test": "npm-run-all db:up test:unit test:database db:down",
"test:unit": "vitest run tests/store.test.ts tests/utils.test.ts",
"test:database": "vitest run tests/database.test.ts",
"db:up": "docker compose -f docker-compose.test.yml up -d",
"db:down": "docker compose -f docker-compose.test.yml down -v",
"db:logs": "docker compose -f docker-compose.test.yml logs -f"
},
"keywords": [
"adonis",
"adonisjs",
"adonisjs-debugbar",
"adonis-debugbar",
"adonis-query-logger",
"adonis-query-debugger",
"adonis-debugger",
"adonis-profilerr",
"adonis-devtools",
"adonis-timeline",
"debugbar",
"debug-toolbar",
"profiler",
"devtools",
"sql",
"queries",
"explain",
"timeline",
"inertia",
"vue",
"development"
],
"devDependencies": {
"@adonisjs/eslint-config": "^3.0.0",
"@adonisjs/lucid": "^22.4.2",
"@adonisjs/session": "^8.1.0",
"@adonisjs/tsconfig": "^2.0.0",
"@types/node": "^25.8.0",
"@types/react": "^19.2.15",
"esbuild": "^0.28.0",
"eslint": "^10.4.0",
"luxon": "^3.7.2",
"mysql2": "^3.22.3",
"npm-run-all": "^4.1.5",
"pg": "^8.21.0",
"preact": "^10.29.2",
"typescript": "^6.0.3",
"vitest": "^3.2.4"
},
"peerDependencies": {
"@adonisjs/core": "^6.0.0 || ^7.0.0"
},
"peerDependenciesMeta": {
"@adonisjs/lucid": {
"optional": true
},
"@adonisjs/session": {
"optional": true
}
}
}