forked from html-screen-capture-js/html-screen-capture-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.27 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
{
"name": "@megaputer/html-screen-capture-js",
"version": "2.0.5",
"description": "HTML Screen Capture JS",
"keywords": [
"html",
"dom",
"screen",
"capture",
"image",
"js",
"javascript",
"ts",
"typescript"
],
"homepage": "https://github.com/Megaputer/html-screen-capture-js",
"bugs": "https://github.com/Megaputer/html-screen-capture-js/issues",
"license": "MIT",
"author": "Uri Kalish <uri.kalish@gmail.com> (https://github.com/urikalish)",
"contributors": [
"Uri Kalish <uri.kalish@gmail.com> (https://github.com/urikalish)",
"Gal Malachi (https://github.com/gal1419)",
"alimovz (https://github.com/alimovz)"
],
"files": [
"dist/html-screen-capture.*.js",
"dist/html-screen-capture.*.js.map",
"dist/types.d.ts",
"dist/index.d.ts"
],
"main": "dist/html-screen-capture.min.js",
"module": "dist/html-screen-capture.esm.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/Megaputer/html-screen-capture-js"
},
"scripts": {
"build": "rollup -c --environment BUILD:production",
"dev": "rollup -c --environment BUILD:dev",
"lint": "tsc --noEmit && lint-staged"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint",
"pre-push": ""
}
},
"lint-staged": {
"*.{js,ts}": [
"eslint --fix"
]
},
"devDependencies": {
"@rollup/plugin-commonjs": "^16.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^10.0.0",
"@rollup/plugin-replace": "^2.3.4",
"@rollup/plugin-typescript": "^6.1.0",
"@types/node": "^14.14.9",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"glob": "^8.1.0",
"husky": "^7.0.2",
"prettier": "^2.3.0",
"rollup": "^2.33.3",
"rollup-plugin-sourcemaps": "^0.6.3",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.29.0",
"tslib": "^2.0.3",
"typescript": "^4.3.2",
"yargs": "^16.1.1"
},
"dependencies": {}
}