-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.61 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.61 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
{
"name": "screencapturekit",
"version": "0.0.1",
"description": "A nodejs wrapper over a swift CLI program which is a wrapper over ScreenCaptureKit module",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./package.json": "./package.json"
},
"scripts": {
"test": "vitest",
"build": "tsup && npm run build-swift",
"build-swift": "swift build --configuration=release --arch arm64 --arch x86_64 && mv .build/apple/Products/Release/screencapturekit ./dist",
"prepublish": "npm run build-swift",
"dev": "tsup --watch",
"format": "prettier --write .",
"semantic-release": "semantic-release"
},
"files": [
"dist/**/*",
"LICENSE",
"README.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/mukeshsoni/screencapturekit-node.git"
},
"keywords": [
"screen-recording",
"screencapturekit"
],
"author": "Mukesh Soni",
"license": "MIT",
"bugs": {
"url": "https://github.com/mukeshsoni/screencapturekit-node/issues"
},
"homepage": "https://github.com/mukeshsoni/screencapturekit-node#readme",
"dependencies": {
"delay": "^6.0.0",
"electron-util": "^0.14.2",
"execa": "^5.0.0",
"file-url": "^3.0.0",
"macos-version": "^5.2.1",
"tempy": "^1.0.0"
},
"devDependencies": {
"@types/execa": "^2.0.0",
"@types/node": "^20.4.6",
"file-type": "^18.5.0",
"prettier": "^3.0.0",
"read-chunk": "^4.0.3",
"semantic-release": "^21.0.7",
"tsup": "^7.2.0",
"typescript": "^5.1.6",
"vitest": "^0.34.1"
}
}