-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.19 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.19 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
{
"name": "@designbycode/alpine-debug",
"version": "1.0.0",
"description": "A singleton debug bar UI for Alpine.js applications, providing an interactive, tabbed panel to inspect reactive data or any arbitrary debug information live in the browser.",
"main": "/dist/index.umd.cjs",
"module": "./dist/index.js",
"type": "module",
"author": "Claude Myburgh <claude@designbycode.co.za>",
"license": "MIT",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.umd.cjs",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"private": false,
"scripts": {
"dev": "vite",
"preview": "vite preview",
"build": "tsc --declaration && vite build",
"clean": "rd /s /q dist .cache>nul 2>&1|echo.>nul",
"test": "vitest",
"pretty": "prettier --write \"src/**/*.ts\""
},
"devDependencies": {
"@types/alpinejs": "^3.13.11",
"@types/node": "^24.2.0",
"alpinejs": "^3.14.9",
"prettier": "^3.6.2",
"terser": "^5.43.1",
"typescript": "^5.9.2",
"vite": "^7.0.6",
"vite-plugin-dts": "^4.5.4",
"vitest": "^3.2.4"
}
}