-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.07 KB
/
Copy pathpackage.json
File metadata and controls
88 lines (88 loc) · 2.07 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
80
81
82
83
84
85
86
87
88
{
"name": "sluglist",
"version": "1.20.0",
"description": "Universal embeddable feedback widget: capture visual feedback (element, area, full page) on dev, staging and beta sites, annotate it, mask PII, and deliver artifacts through pluggable connectors.",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"unpkg": "./dist/sluglist.global.js",
"jsdelivr": "./dist/sluglist.global.js",
"bin": {
"sluglist": "./dist/cli.js"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./labels": {
"types": "./dist/labels.d.ts",
"import": "./dist/labels.js",
"require": "./dist/labels.cjs"
},
"./contract": {
"types": "./dist/contract.d.ts",
"import": "./dist/contract.js",
"require": "./dist/contract.cjs"
},
"./node": {
"types": "./dist/node.d.ts",
"import": "./dist/node.js",
"require": "./dist/node.cjs"
}
},
"files": [
"dist",
"skills",
"templates"
],
"scripts": {
"build": "tsup",
"type-check": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"pack": "npm pack",
"prepublishOnly": "npm run build"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"sluglist",
"feedback",
"slug",
"bug report",
"visual feedback",
"screenshot",
"annotation",
"widget",
"html-to-image",
"qa",
"staging",
"typescript"
],
"author": "Yelysei Lukin <yelysei277@gmail.com>",
"repository": {
"type": "git",
"url": "https://github.com/MiraWision/sluglist.git"
},
"bugs": {
"url": "https://github.com/MiraWision/sluglist/issues"
},
"homepage": "https://sluglist.dev",
"license": "MIT",
"dependencies": {
"html-to-image": "^1.11.13",
"jszip": "^3.10.1"
},
"devDependencies": {
"@types/node": "^26.1.1",
"jsdom": "^29.1.1",
"tsup": "^8.5.1",
"typescript": "^5.9.2",
"vitest": "^3.2.4",
"yaml": "^2.8.0"
}
}