-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
38 lines (38 loc) · 1018 Bytes
/
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
{
"name": "@xata.io/screenshot",
"version": "1.0.0",
"description": "A zero-dependency browser-native way to take screenshots powered by the native web MediaDevices API.",
"main": "dist/index.js",
"module": "dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/xataio/screenshot"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "run-s build:*",
"build:clean": "rm -rf dist",
"build:bundle": "rollup -c rollup.config.ts",
"prepublish": "npm run build"
},
"files": [
"dist"
],
"keywords": [
"screenshot",
"feedback",
"screen capture",
"mediadevices",
"getdisplaymedia"
],
"author": "Tejas Kumar <tejas@xata.io>",
"license": "MIT",
"devDependencies": {
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.1.3",
"@rollup/plugin-typescript": "^8.3.0",
"npm-run-all": "^4.1.5",
"rollup": "^2.67.0",
"typescript": "^4.6.0-dev.20220205"
}
}