-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.61 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 1.61 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "htmlnote",
"version": "0.1.0",
"description": "Annotate AI-generated HTML in the browser. Click any element, leave a note, ship feedback back to your agent.",
"type": "module",
"license": "MIT",
"author": "Davel Radindra",
"homepage": "https://github.com/DavelRad/htmlnote",
"repository": {
"type": "git",
"url": "git+https://github.com/DavelRad/htmlnote.git"
},
"bugs": {
"url": "https://github.com/DavelRad/htmlnote/issues"
},
"keywords": [
"html",
"annotation",
"review",
"claude",
"claude-code",
"ai-agent",
"feedback",
"developer-tools"
],
"bin": {
"htmlnote": "./bin/htmlnote.mjs"
},
"files": [
"bin",
"dist",
".claude-plugin",
"hooks",
"commands",
"LICENSE",
"README.md"
],
"scripts": {
"dev": "vite",
"build:ui": "vite build",
"build:cli": "node scripts/build-cli.mjs",
"build:binary": "bun build dist/cli.mjs --compile --outfile=dist/htmlnote",
"build": "npm run build:ui && npm run build:cli",
"start": "./bin/htmlnote.mjs",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"prepublishOnly": "npm run build"
},
"dependencies": {
"open": "^10.1.0"
},
"devDependencies": {
"@types/node": "^20.12.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@vitejs/plugin-react": "^4.3.0",
"esbuild": "^0.21.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"typescript": "^5.4.0",
"vite": "^5.4.0",
"vite-plugin-singlefile": "^2.0.0",
"vitest": "^2.1.0",
"zustand": "^4.5.0"
},
"engines": {
"node": ">=18"
}
}