forked from riccardoperra/codeimage
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 1.65 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 1.65 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
{
"name": "@codeimage/dom-export",
"version": "1.10.1",
"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",
"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": "bubkoo.wy@gmail.com"
},
"contributors": [
{
"name": "bubkooo",
"email": "bubkoo.wy@gmail.com"
},
{
"name": "OiNutter",
"email": "will@oinutter.co.uk"
}
],
"devDependencies": {
"@types/node": "^18.11.0",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"tslib": "^2.4.0",
"typescript": "^4.8.4",
"vite": "^3.1.8",
"vite-plugin-dts": "^1.6.6"
},
"repository": {
"type": "git",
"url": "git+https://github.com/riccardoperra/codeimage-export.git"
},
"dependencies": {
"@solid-primitives/platform": "^0.0.101",
"solid-js": "^1.5.7"
},
"peerDependencies": {
"@solid-primitives/platform": "^0.0.101",
"solid-js": "^1.5.2"
}
}