cmux-picker 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,65 @@
1
+ {
2
+ "name": "cmux-picker",
3
+ "version": "0.1.0",
4
+ "description": "Pick a DOM element on any page in Chrome and send it, with a prompt, to a coding agent running in cmux.",
5
+ "type": "module",
6
+ "author": {
7
+ "name": "Marco Boffo",
8
+ "email": "chat@marcoboffo.me"
9
+ },
10
+ "license": "MIT",
11
+ "repository": {
12
+ "type": "git",
13
+ "url": "git+https://github.com/scaccogatto/cmux-picker.git"
14
+ },
15
+ "homepage": "https://github.com/scaccogatto/cmux-picker#readme",
16
+ "bugs": {
17
+ "url": "https://github.com/scaccogatto/cmux-picker/issues"
18
+ },
19
+ "keywords": [
20
+ "chrome-extension",
21
+ "cmux",
22
+ "claude-code",
23
+ "coding-agent",
24
+ "dom",
25
+ "element-picker",
26
+ "native-messaging",
27
+ "devtools",
28
+ "ai"
29
+ ],
30
+ "bin": {
31
+ "cmux-picker": "dist/cli.js"
32
+ },
33
+ "files": [
34
+ "dist"
35
+ ],
36
+ "scripts": {
37
+ "build": "vite build && vite build --mode extension",
38
+ "typecheck": "tsc --noEmit",
39
+ "test": "vitest run",
40
+ "test:watch": "vitest",
41
+ "coverage": "vitest run --coverage",
42
+ "lint": "eslint .",
43
+ "demo": "node demo/serve.mjs",
44
+ "e2e": "playwright test",
45
+ "store-assets": "STORE_ASSETS=1 playwright test e2e/store-assets.spec.ts",
46
+ "demo:gif": "DEMO_GIF=1 playwright test e2e/demo-gif.spec.ts",
47
+ "prepublishOnly": "npm run typecheck && npm run test && npm run build"
48
+ },
49
+ "engines": {
50
+ "node": ">=20"
51
+ },
52
+ "devDependencies": {
53
+ "@eslint/js": "^10.0.1",
54
+ "@playwright/test": "^1.63.0",
55
+ "@types/chrome": "^0.2.9",
56
+ "@types/node": "^26.4.1",
57
+ "@vitest/coverage-v8": "^5.0.0",
58
+ "eslint": "^10.10.0",
59
+ "jsdom": "^30.0.1",
60
+ "typescript": "^6.0.3",
61
+ "typescript-eslint": "^8.69.0",
62
+ "vite": "^8.2.2",
63
+ "vitest": "^5.0.0"
64
+ }
65
+ }