forked from reviewjs/annotate
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.58 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.58 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
{
"name": "@reviewjs/annotate",
"version": "1.1.0",
"description": "A drop-in visual review & annotation layer for any website. Local-only, zero backend. Highlight text, draw shapes, drop pins and leave threaded comments — then download them as JSON.",
"main": "annotate.js",
"unpkg": "annotate.js",
"jsdelivr": "annotate.js",
"files": [
"annotate.js",
"README.md",
"LICENSE"
],
"scripts": {
"start": "npx serve . --listen 4200 --no-clipboard",
"demo": "npx serve . --listen 4200 --no-clipboard",
"pages:build": "rm -rf docs && mkdir -p docs/demo && cp index.html annotate-sync.js sync-engine.js sync-google-sheet.js sync-hono.js google-sheet.gs .nojekyll docs/ && cp demo/*.html docs/demo/",
"deploy:pages": "npm run pages:build",
"publish:npm": "npm publish --access public",
"test": "playwright test",
"test:chromium": "playwright test --project=chromium",
"test:mobile": "playwright test --project=mobile-chrome --project=mobile-safari",
"test:report": "playwright show-report"
},
"keywords": [
"annotation",
"comments",
"review",
"feedback",
"highlight",
"markup",
"proofing",
"no-backend",
"localstorage",
"vanilla-js"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/reviewjs/annotate.git"
},
"homepage": "https://reviewjs.com",
"bugs": {
"url": "https://github.com/reviewjs/annotate/issues"
},
"directories": {
"example": "examples"
},
"author": "Akash Goswami",
"devDependencies": {
"@playwright/test": "^1.61.0"
}
}