tippa 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,64 @@
1
+ {
2
+ "name": "tippa",
3
+ "version": "0.1.0",
4
+ "description": "pick an element in a vite react app and send the change request to a running claude code session",
5
+ "keywords": [
6
+ "vite-plugin",
7
+ "claude-code",
8
+ "mcp",
9
+ "react"
10
+ ],
11
+ "license": "MIT",
12
+ "author": "ap-justin",
13
+ "repository": {
14
+ "type": "git",
15
+ "url": "git+https://github.com/ap-justin/tippa.git"
16
+ },
17
+ "homepage": "https://github.com/ap-justin/tippa#readme",
18
+ "bugs": {
19
+ "url": "https://github.com/ap-justin/tippa/issues"
20
+ },
21
+ "type": "module",
22
+ "exports": {
23
+ ".": {
24
+ "types": "./dist/index.d.mts",
25
+ "default": "./dist/index.mjs"
26
+ }
27
+ },
28
+ "bin": {
29
+ "tippa-channel": "./dist/channel/bin.mjs"
30
+ },
31
+ "files": [
32
+ "dist"
33
+ ],
34
+ "engines": {
35
+ "node": ">=22.18"
36
+ },
37
+ "packageManager": "pnpm@12.4.2",
38
+ "scripts": {
39
+ "build": "tsdown",
40
+ "typecheck": "tsc -b",
41
+ "lint": "biome check .",
42
+ "test": "vitest run",
43
+ "check": "pnpm typecheck && pnpm lint && pnpm build && pnpm test"
44
+ },
45
+ "devDependencies": {
46
+ "@biomejs/biome": "^2.5.14",
47
+ "@types/node": "^24.13.6",
48
+ "bippy": "0.6.1",
49
+ "happy-dom": "^20.14.5",
50
+ "modern-screenshot": "4.7.0",
51
+ "react-grab": "0.2.0",
52
+ "tsdown": "^0.23.0",
53
+ "typescript": "^7.0.2",
54
+ "vite": "^8.3.1",
55
+ "vitest": "^5.0.1"
56
+ },
57
+ "dependencies": {
58
+ "@modelcontextprotocol/sdk": "1.30.1",
59
+ "zod": "^4.6.5"
60
+ },
61
+ "peerDependencies": {
62
+ "vite": ">=8"
63
+ }
64
+ }