@omniaura/solid-pulse 0.1.0

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,99 @@
1
+ {
2
+ "name": "@omniaura/solid-pulse",
3
+ "version": "0.1.0",
4
+ "description": "Dev-mode pulse for SolidJS apps: flash what really updates (fine-grained computations, component mounts/remounts, DOM mutations, DOM detach/reattach with focus and scroll loss, fetch/WebSocket/SSE lifecycle, Solid Query observers) with an agent-controllable bridge and CLI. Every panel control has a 1:1 CLI command.",
5
+ "type": "module",
6
+ "main": "./dist/index.js",
7
+ "module": "./dist/index.js",
8
+ "types": "./dist/index.d.ts",
9
+ "bin": {
10
+ "solid-pulse": "dist/cli.js"
11
+ },
12
+ "exports": {
13
+ ".": {
14
+ "types": "./dist/index.d.ts",
15
+ "import": "./dist/index.js"
16
+ },
17
+ "./core": {
18
+ "types": "./dist/core.d.ts",
19
+ "import": "./dist/core.js"
20
+ },
21
+ "./query": {
22
+ "types": "./dist/query.d.ts",
23
+ "import": "./dist/query.js"
24
+ },
25
+ "./panel": {
26
+ "types": "./dist/panel.d.ts",
27
+ "import": "./dist/panel.js"
28
+ },
29
+ "./bridge": {
30
+ "types": "./dist/bridge.d.ts",
31
+ "import": "./dist/bridge.js"
32
+ },
33
+ "./vite": {
34
+ "types": "./dist/vite.d.ts",
35
+ "import": "./dist/vite.js"
36
+ }
37
+ },
38
+ "files": [
39
+ "dist",
40
+ "README.md",
41
+ "LICENSE"
42
+ ],
43
+ "scripts": {
44
+ "build": "tsup",
45
+ "dev": "tsup --watch",
46
+ "test": "bun --conditions=browser --conditions=development test",
47
+ "typecheck": "tsc --noEmit",
48
+ "prepublishOnly": "bun run build"
49
+ },
50
+ "keywords": [
51
+ "solid",
52
+ "solidjs",
53
+ "devtools",
54
+ "tanstack-query",
55
+ "solid-query",
56
+ "agent",
57
+ "claude-code",
58
+ "codex",
59
+ "flash",
60
+ "rerender",
61
+ "reactivity",
62
+ "suspense",
63
+ "vite-plugin"
64
+ ],
65
+ "license": "MIT",
66
+ "author": "omniaura",
67
+ "repository": {
68
+ "type": "git",
69
+ "url": "git+https://github.com/omniaura/solid-pulse.git",
70
+ "directory": "packages/solid-pulse"
71
+ },
72
+ "homepage": "https://github.com/omniaura/solid-pulse#readme",
73
+ "bugs": {
74
+ "url": "https://github.com/omniaura/solid-pulse/issues"
75
+ },
76
+ "publishConfig": {
77
+ "access": "public"
78
+ },
79
+ "peerDependencies": {
80
+ "@tanstack/query-core": ">=5.0.0",
81
+ "solid-js": ">=1.7.0",
82
+ "vite": ">=5.0.0"
83
+ },
84
+ "peerDependenciesMeta": {
85
+ "@tanstack/query-core": {
86
+ "optional": true
87
+ },
88
+ "vite": {
89
+ "optional": true
90
+ }
91
+ },
92
+ "dependencies": {
93
+ "ws": "^8.18.0"
94
+ },
95
+ "devDependencies": {
96
+ "@tanstack/query-core": "^5.100.0",
97
+ "@types/ws": "^8.5.12"
98
+ }
99
+ }