-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 1.81 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 1.81 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
70
71
72
73
74
75
76
77
78
{
"name": "@interworks/annotator",
"version": "0.1.0",
"description": "Click any element on a page, leave a comment, export to wherever. Works as a paste-into-devtools script or as a Vite dev plugin.",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./vite": {
"types": "./dist/vite.d.ts",
"import": "./dist/vite.js"
},
"./iife": "./dist/annotator.iife.js"
},
"files": ["dist", "bin", "LICENSE", "README.md"],
"bin": {
"annotator": "./bin/annotator.ts"
},
"scripts": {
"build": "bun run build.ts",
"dev": "bun run --hot build.ts --watch",
"playground": "bun run build.ts && bun run dev/serve.ts",
"demo": "bun run build.ts && bun run dev/demo.ts",
"typecheck": "tsc --noEmit",
"prepublishOnly": "bun run build && bun run typecheck"
},
"keywords": [
"annotation",
"comment",
"feedback",
"screenshot",
"selector",
"devtools",
"react",
"vite-plugin",
"claude",
"ai-agents",
"design-review",
"qa",
"bug-report",
"cli",
"overlay"
],
"repository": {
"type": "git",
"url": "git+https://github.com/InterWorks/annotator.git"
},
"homepage": "https://github.com/InterWorks/annotator#readme",
"bugs": {
"url": "https://github.com/InterWorks/annotator/issues"
},
"author": "InterWorks, Inc.",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=20"
},
"devDependencies": {
"@types/bun": "latest",
"playwright": "^1.59.1",
"typescript": "^5.5.0",
"vite": "^5.0.0"
},
"peerDependencies": {
"vite": "^5.0.0 || ^6.0.0"
},
"peerDependenciesMeta": {
"vite": {
"optional": true
}
}
}