-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.1 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
{
"name": "@nonstrict/recordkit",
"version": "0.23.0",
"description": "Powerful screen recording for your Electron app on macOS.",
"homepage": "https://nonstrict.eu/recordkit",
"repository": "nonstrict-hq/RecordKit.Electron",
"type": "module",
"main": "out/index.js",
"types": "out/index.d.ts",
"exports": {
"import": "./out/index.js",
"require": "./out/index.cjs"
},
"engines": {
"node": ">=18.16"
},
"scripts": {
"test": "jest",
"build": "rm -rf out && tsc && rollup -c"
},
"keywords": [
"recording",
"screen",
"recorder",
"webcam",
"microphone",
"electron",
"macos",
"avfoundation",
"screencapturekit"
],
"author": {
"name": "Nonstrict B.V.",
"email": "team+recordkit@nonstrict.com",
"url": "https://nonstrict.eu/"
},
"license": "SEE LICENSE IN License.md",
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "18.19.1",
"jest": "^29.7.0",
"rollup": "^4.12.0",
"ts-jest": "^29.1.2",
"typedoc": "^0.25.11",
"typescript": "^5.3.3"
},
"volta": {
"node": "18.19.1"
}
}