-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.63 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
{
"name": "shbrw",
"description": "A headless CLI browser made for taking screenshots",
"version": "1.2.0",
"main": "dist/api.js",
"bin": {
"shbrw": "dist/main.js"
},
"author": {
"name": "Jonas F. Franke <@binary-blazer>",
"email": "me@binaryblazer.me",
"url": "https://binaryblazer.me"
},
"keywords": [
"cli",
"screenshot",
"shbrw",
"screencapture",
"browser",
"frameless",
"headless"
],
"files": [
"dist",
"assets",
"README.md",
"dist/api.js"
],
"license": "Apache-2.0",
"engines": {
"node": ">=16.13.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/binary-blazer/shbrw.git"
},
"homepage": "https://github.com/binary-blazer/shbrw#readme",
"bugs": {
"url": "https://github.com/binary-blazer/shbrw/issues"
},
"scripts": {
"build": "tsc",
"start": "electron .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"scripts:update-version": "bun scripts/updateVersion.js",
"scripts:upv": "bun scripts/updateVersion.js",
"upv": "bun scripts/updateVersion.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"electron": "^34.0.2",
"yargs": "^17.7.2"
},
"devDependencies": {
"@types/yargs": "^17.0.33",
"prettier": "^3.4.2",
"prompt-sync": "^4.2.0",
"typescript": "^5.7.3"
}
}