-
-
Notifications
You must be signed in to change notification settings - Fork 86
/
package.json
80 lines (80 loc) · 1.72 KB
/
package.json
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
{
"name": "@codeimage/dom-export",
"version": "1.11.5",
"description": "Generates an image from a DOM node using HTML5 canvas and SVG.",
"main": "./dist/dom-export.mjs",
"module": "./dist/dom-export.mjs",
"types": "./dist/public-api.d.ts",
"files": [
"dist"
],
"exports": {
".": {
"default": "./dist/dom-export.mjs",
"types": "./dist/public-api.d.ts"
}
},
"keywords": [
"screenshot",
"capture",
"canvas",
"html",
"dom",
"image",
"vector",
"svg"
],
"scripts": {
"lint": "eslint . --ext .js,.jsx,.mjs,.ts,.tsx -c ../../.eslintrc.js",
"build": "vite build",
"test": "vitest",
"typecheck:ci": "tsc --skipLibCheck --project tsconfig.dts.json"
},
"lint-staged": {
"**/*.{js,jsx,tsx,ts,less,md,json}": [
"pretty-quick — staged"
],
"*.ts": [
"eslint --fix"
]
},
"license": "MIT",
"author": {
"name": "bubkooo",
"email": "[email protected]"
},
"contributors": [
{
"name": "bubkooo",
"email": "[email protected]"
},
{
"name": "OiNutter",
"email": "[email protected]"
}
],
"devDependencies": {
"@types/node": "^18.16.17",
"happy-dom": "8.1.1",
"lint-staged": "^13.2.1",
"prettier": "^2.8.7",
"rimraf": "^3.0.2",
"tslib": "^2.6.2",
"typescript": "~5.3.2",
"vite": "^3.2.5",
"vite-plugin-dts": "^1.7.3",
"vitest": "0.26.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/riccardoperra/codeimage-export.git"
},
"dependencies": {
"@solid-primitives/platform": "^0.0.101",
"solid-js": "^1.8.6"
},
"peerDependencies": {
"@solid-primitives/platform": "^0.0.101",
"solid-js": "^1.8.6"
}
}