-
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.02 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.02 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": "@mkhuda/dom-screenshot",
"version": "1.0.3",
"description": "DOM screenshot by dom-to-image",
"type": "module",
"main": "dist/dom-screenshot.esm.js",
"module": "dist/dom-screenshot.esm.js",
"types": "dist/dom-screenshot.d.ts",
"exports": {
".": {
"types": "./dist/dom-screenshot.d.ts",
"import": "./dist/dom-screenshot.esm.js",
"require": "./dist/dom-screenshot.min.js"
}
},
"author": "Muhammad K. Huda",
"license": "MIT",
"volta": {
"node": "22.12.0"
},
"workspaces": [
"examples/*"
],
"scripts": {
"build": "rimraf dist && rollup -c --perf",
"watch": "rollup -c --watch",
"start": "npm run build",
"test": "vitest",
"test:run": "vitest run",
"test:ui": "vitest --ui",
"test:watch": "vitest --watch",
"test:coverage": "vitest run --coverage",
"example:dev": "cd examples/react-app && npm run dev",
"example:build": "cd examples/react-app && npm run build"
},
"devDependencies": {
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.3.0",
"@testing-library/dom": "^10.4.1",
"@types/chai-as-promised": "^8.0.2",
"@types/sinon": "^17.0.4",
"@vitest/coverage-v8": "^4.0.8",
"@vitest/ui": "^4.0.8",
"chai": "^6.2.0",
"chai-as-promised": "^8.0.2",
"jsdom": "^27.1.0",
"nock": "^14.0.10",
"prettier": "^3.6.2",
"rimraf": "^5.0.10",
"rollup": "^4.53.1",
"rollup-plugin-copy": "^3.5.0",
"sinon": "^21.0.0",
"tslib": "^2.3.1",
"typescript": "^5.9.3",
"vitest": "^4.0.8"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mkhuda/dom-screenshot.git"
},
"bugs": {
"url": "https://github.com/mkhuda/dom-screenshot/issues"
},
"homepage": "https://github.com/mkhuda/dom-screenshot#readme",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"keywords": [
"dom",
"screenshot",
"capture",
"image",
"dom-to-image"
],
"dependencies": {
"braces": "^3.0.3"
}
}