-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.15 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 2.15 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
79
{
"name": "helldots",
"version": "0.8.0",
"description": "Drop-in comment overlay for web apps — click anywhere to leave a comment anchored to that element, with an automatic screenshot and environment capture",
"keywords": [
"comments",
"annotations",
"feedback",
"bug-report",
"screenshot",
"overlay",
"review",
"shadow-dom",
"widget"
],
"homepage": "https://github.com/xKeCo/helldots#readme",
"bugs": {
"url": "https://github.com/xKeCo/helldots/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/xKeCo/helldots.git"
},
"author": "xKeCo <kevcollazos@gmail.com>",
"license": "MIT",
"type": "module",
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/helldots.esm.js",
"default": "./dist/helldots.esm.js"
},
"./package.json": "./package.json"
},
"types": "./dist/index.d.ts",
"unpkg": "dist/helldots.umd.js",
"jsdelivr": "dist/helldots.umd.js",
"files": [
"dist/"
],
"engines": {
"node": ">=18"
},
"scripts": {
"dev": "npx --yes serve -l 4173 .",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"lint": "eslint .",
"typecheck": "tsc --noEmit",
"format": "prettier --write .",
"format:check": "prettier --check .",
"build": "node scripts/build.mjs",
"size": "node scripts/check-size.mjs",
"verify": "npm run lint && npm run typecheck && npm run format:check && npm test && npm run build && npm run size",
"check:commit": "node scripts/check-commit-msg.mjs",
"prepublishOnly": "npm run verify",
"changeset": "changeset",
"release": "changeset version",
"prepare": "node scripts/install-hooks.mjs"
},
"devDependencies": {
"@changesets/cli": "^2.31.0",
"@eslint/js": "^10.0.1",
"@vitest/coverage-v8": "^4.1.9",
"esbuild": "^0.28.1",
"eslint": "^10.6.0",
"eslint-config-prettier": "^10.1.8",
"globals": "^17.7.0",
"jsdom": "^29.1.1",
"nanoid": "^6.0.1",
"prettier": "^3.9.4",
"typescript": "^6.0.3",
"vitest": "^4.1.9"
},
"dependencies": {
"modern-screenshot": "^4.7.0"
}
}