-
-
Notifications
You must be signed in to change notification settings - Fork 277
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.25 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.25 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
{
"name": "@zumer/snapdom",
"version": "2.9.0",
"description": "snapDOM captures HTML elements to images with exceptional speed and accuracy.",
"type": "module",
"main": "./dist/snapdom.js",
"module": "./dist/snapdom.mjs",
"types": "./types/snapdom.d.ts",
"sideEffects": false,
"workspaces": [
"packages/*"
],
"exports": {
".": {
"types": "./types/snapdom.d.ts",
"import": "./dist/snapdom.mjs",
"require": "./dist/snapdom.js",
"default": "./dist/snapdom.mjs"
},
"./preCache": {
"import": "./dist/preCache.mjs"
},
"./plugins": {
"import": "./dist/plugins.mjs"
}
},
"files": [
"dist/",
"types/snapdom.d.ts",
"README.md"
],
"scripts": {
"compile": "node esbuild.config.mjs",
"lint": "eslint src __tests__ --ext .js",
"lint:fix": "eslint src __tests__ --ext .js --fix",
"test": "npm run lint:fix && npx vitest run --browser.headless --reporter=verbose",
"test:coverage": "npx vitest run --browser.headless --coverage",
"test:benchmark": "npx vitest bench --browser.headless --watch=false",
"bump:dry": "npx @zumerbox/bump -d",
"bump": "npx @zumerbox/bump && npx @zumerbox/changelog",
"build": "npm run compile && npm pack",
"prebuild": "git add CHANGELOG.md && git commit -m \"Bumped version\" && git push --follow-tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zumerlab/snapdom.git"
},
"keywords": [
"zumerlab",
"snapDOM",
"screenshot",
"engine",
"html capture",
"dom capture",
"html to image",
"dom to image",
"html screenshot",
"capture element",
"html snapshot",
"element screenshot",
"web capture",
"snapshot tool",
"render html",
"capture dom",
"web snapshot",
"html export",
"dom snapshot",
"html to png",
"html to svg"
],
"author": "Juan Martin Muda",
"license": "MIT",
"bugs": {
"url": "https://github.com/zumerlab/snapdom/issues"
},
"homepage": "https://zumerlab.github.io/snapdom/",
"devDependencies": {
"@eslint/js": "^9.36.0",
"@vitest/browser": "^3.1.2",
"@vitest/coverage-v8": "^3.1.2",
"eslint": "^9.36.0",
"globals": "^16.4.0",
"playwright": "^1.52.0",
"esbuild": "^0.24.0"
}
}