forked from skellock/osnap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.5 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
{
"authors": [
"Steve Kellock",
"Levi Buzolic"
],
"bin": {
"osnap": "bin/osnap"
},
"dependencies": {
"execa": "^8.0.1",
"minimist": "^1.2.7",
"tempfile": "^5.0.0",
"which": "^4.0.0"
},
"description": "A CLI for grabbing ios/android screenshots and saving to your clipboard or filesystem.",
"resolutions": {
"got": "^11.8.5"
},
"devDependencies": {
"@types/minimist": "^1.2.2",
"@types/node": "^22.9.0",
"@types/which": "^3.0.0",
"np": "^8.0.4",
"prettier": "^3.0.3",
"rimraf": "^5.0.1",
"typescript": "^5.0.3"
},
"files": [
"bin/osnap",
"macos/pbcopyimg",
"README.md",
"src/*.js"
],
"keywords": [
"ios",
"android",
"screenshot"
],
"license": "MIT",
"name": "@ferocia-oss/osnap",
"np": {
"yarn": true,
"branch": "main"
},
"private": false,
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/ferocia/osnap.git"
},
"scripts": {
"prebuild": "yarn clean",
"build": "tsc -p .",
"build:mac": "gcc -Wall -O3 -ObjC -framework Foundation -framework AppKit -o macos/pbcopyimg macos/pbcopyimg.m",
"clean": "rimraf {bin,src}/**/*.{d.ts,js}",
"pretty": "prettier --no-semi --single-quote --print-width 100 --parser typescript --write src/**/*.ts",
"watch": "tsc -p . -w",
"test": "echo \"Error: no test specified\"",
"prerelease": "yarn build",
"release": "np"
},
"type": "commonjs",
"version": "1.3.5"
}