@devframes/plugin-messages 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,87 @@
1
+ {
2
+ "name": "@devframes/plugin-messages",
3
+ "type": "module",
4
+ "version": "0.0.1",
5
+ "description": "Devframe plugin — the hub message feed as a portable panel: browse, filter, and dismiss `ctx.messages` entries from any hub host.",
6
+ "author": "Anthony Fu <anthonyfu117@hotmail.com>",
7
+ "license": "MIT",
8
+ "homepage": "https://github.com/devframes/devframe#readme",
9
+ "repository": {
10
+ "directory": "plugins/messages",
11
+ "type": "git",
12
+ "url": "git+https://github.com/devframes/devframe.git"
13
+ },
14
+ "bugs": "https://github.com/devframes/devframe/issues",
15
+ "keywords": [
16
+ "devframe",
17
+ "devframe-plugin",
18
+ "devtools",
19
+ "messages",
20
+ "notifications"
21
+ ],
22
+ "sideEffects": false,
23
+ "exports": {
24
+ ".": "./dist/index.mjs",
25
+ "./client": "./dist/client/index.mjs",
26
+ "./cli": "./dist/cli.mjs",
27
+ "./constants": "./dist/constants.mjs",
28
+ "./node": "./dist/node/index.mjs",
29
+ "./rpc": "./dist/rpc/index.mjs",
30
+ "./types": "./dist/types.mjs",
31
+ "./vite": "./dist/vite.mjs",
32
+ "./package.json": "./package.json"
33
+ },
34
+ "types": "./dist/index.d.mts",
35
+ "bin": {
36
+ "devframe-messages": "./bin.mjs"
37
+ },
38
+ "files": [
39
+ "bin.mjs",
40
+ "dist"
41
+ ],
42
+ "peerDependencies": {
43
+ "vite": "^7.0.0 || ^8.0.0",
44
+ "@devframes/hub": "0.5.4",
45
+ "devframe": "0.5.4"
46
+ },
47
+ "peerDependenciesMeta": {
48
+ "vite": {
49
+ "optional": true
50
+ }
51
+ },
52
+ "dependencies": {
53
+ "nostics": "^1.1.4"
54
+ },
55
+ "devDependencies": {
56
+ "@antfu/design": "^0.2.1",
57
+ "@iconify-json/ph": "^1.2.0",
58
+ "@storybook/addon-docs": "^10.4.6",
59
+ "@storybook/vue3-vite": "^10.4.6",
60
+ "@types/node": "^25.9.1",
61
+ "@vitejs/plugin-vue": "^6.0.7",
62
+ "@vueuse/core": "^14.3.0",
63
+ "colorjs.io": "^0.6.0",
64
+ "get-port-please": "^3.2.0",
65
+ "h3": "2.0.1-rc.22",
66
+ "storybook": "^10.4.6",
67
+ "tsdown": "^0.22.0",
68
+ "unocss": "^66.0.0",
69
+ "vite": "^8.0.14",
70
+ "vite-plugin-css-injected-by-js": "^3.5.0",
71
+ "vitest": "^4.1.7",
72
+ "vue": "^3.5.34",
73
+ "ws": "^8.21.0",
74
+ "devframe": "0.5.4",
75
+ "@devframes/hub": "0.5.4"
76
+ },
77
+ "scripts": {
78
+ "build": "tsdown && vite build --config src/client/vite.config.ts && vite build --config src/spa/vite.config.ts",
79
+ "dev": "vite --config src/spa/vite.config.ts --host 0.0.0.0",
80
+ "watch": "tsdown --watch",
81
+ "cli:build": "node bin.mjs build --out-dir dist/static",
82
+ "storybook": "storybook dev -p 6006",
83
+ "build-storybook": "storybook build",
84
+ "test": "vitest run",
85
+ "typecheck": "tsc --noEmit"
86
+ }
87
+ }